You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have the dclicker seeming to work, except that the << < > >> symbols are not appearing. I've spent about 2h reading code, trying things, can't figure it out. Hoping you can assist.
The dclicker line below is what I've added to de1_skin_settings.tcl. The first line below is for context/placement only, the 2nd line is the "action".
As you can see from the video, it appears to be fully functional. I've tried this below, and it themes the label, but not the symbols, which appear to simply not display.
dui aspect set [subst {
dclicker_symbol2.fill #FF0000
dclicker_symbol2.font_size 18
dclicker_label.font_size 18
dclicker_label.fill #FF0000
dclicker_label.anchor center
dclicker_label.justify center
}]
IMG_0693.mov
The text was updated successfully, but these errors were encountered:
@decentjohn
The problem lies in that I didn't define a set of "default" aspects for dclickers, only for the specific styles used in DYE, so no symbols are defined for the arrows and thus they are not painted.
Using the styles in DYE, this would get you going, but I should rather add this as defaults for dclickers in dui.tcl, which I'll do in a PR:
dui aspect set -theme default -type dclicker set {
orient horizontal use_biginc 1
symbol chevron-double-left symbol1 chevron-left
symbol2 chevron-right symbol3 chevron-double-right
}
dui aspect set -theme default {
dclicker_symbol.pos {0.075 0.5} dclicker_symbol.font_size 24 dclicker_symbol.anchor center dclicker_symbol.fill "#7f879a"
dclicker_symbol1.pos {0.275 0.5} dclicker_symbol1.font_size 24 dclicker_symbol1.anchor center dclicker_symbol1.fill "#7f879a"
dclicker_symbol2.pos {0.725 0.5} dclicker_symbol2.font_size 24 dclicker_symbol2.anchor center dclicker_symbol2.fill "#7f879a"
dclicker_symbol3.pos {0.925 0.5} dclicker_symbol3.font_size 24 dclicker_symbol3.anchor center dclicker_symbol3.fill "#7f879a"
}
I have the dclicker seeming to work, except that the << < > >> symbols are not appearing. I've spent about 2h reading code, trying things, can't figure it out. Hoping you can assist.
The dclicker line below is what I've added to de1_skin_settings.tcl. The first line below is for context/placement only, the 2nd line is the "action".
As you can see from the video, it appears to be fully functional. I've tried this below, and it themes the label, but not the symbols, which appear to simply not display.
IMG_0693.mov
The text was updated successfully, but these errors were encountered: