all repos — openbox @ 87fd759ba98dfec47b4c6a5cb291339617d40af3

openbox fork - make it a bit more like ryudo

the title_focused_shadow_color is being set twice, and being overridden by the osd color (though not in the texture)
Dana Jansens danakj@orodu.net
commit

87fd759ba98dfec47b4c6a5cb291339617d40af3

parent

12ca673de556b341588a7f67fb2b9417c1e91d6b

1 files changed, 0 insertions(+), 4 deletions(-)

jump to
M render/theme.crender/theme.c

@@ -897,13 +897,9 @@ i = parse_inline_number(p + strlen("shadowtint="));

j = (i > 0 ? 0 : 255); i = ABS(i*255/100); - theme->title_focused_shadow_color = RrColorNew(inst, j, j, j); - theme->title_focused_shadow_alpha = i; theme->osd_shadow_color = RrColorNew(inst, j, j, j); theme->osd_shadow_alpha = i; } else { - theme->title_focused_shadow_color = RrColorNew(inst, 0, 0, 0); - theme->title_focused_shadow_alpha = 50; theme->osd_shadow_color = RrColorNew(inst, 0, 0, 0); theme->osd_shadow_alpha = 50; }