summaryrefslogtreecommitdiff
path: root/render
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2008-02-05 00:07:26 -0500
committerDana Jansens <danakj@orodu.net>2008-02-05 00:09:51 -0500
commit87fd759ba98dfec47b4c6a5cb291339617d40af3 (patch)
tree1a5c13f74befc3c43423cd1785ee31b7245035db /render
parent12ca673de556b341588a7f67fb2b9417c1e91d6b (diff)
the title_focused_shadow_color is being set twice, and being overridden by the osd color (though not in the texture)
Diffstat (limited to 'render')
-rw-r--r--render/theme.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/render/theme.c b/render/theme.c
index a57269dd..9fc1f1db 100644
--- a/render/theme.c
+++ b/render/theme.c
@@ -897,13 +897,9 @@ RrTheme* RrThemeNew(const RrInstance *inst, const gchar *name,
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;
}