diff options
| author | Dana Jansens <danakj@orodu.net> | 2003-08-14 19:31:49 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2003-08-14 19:31:49 +0000 |
| commit | 43c8a3d2bf92a543c6ed167b78a350f8979cb462 (patch) | |
| tree | d8dd4b3ad8f86813dec9829e2bb7f97312f52c51 | |
| parent | 5c0f10b6b6602c18b211b6ebca6ec93557c8cea7 (diff) | |
was reading the menu bullet color into the wrong place
| -rw-r--r-- | render/theme.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/render/theme.c b/render/theme.c index 6e7d43c5..6880f008 100644 --- a/render/theme.c +++ b/render/theme.c @@ -244,7 +244,7 @@ RrTheme* RrThemeNew(const RrInstance *inst, gchar *name) "menu.frame.textColor", &theme->menu_color)) theme->menu_color = RrColorNew(inst, 0xff, 0xff, 0xff); if (!read_color(db, inst, - "menu.bullet.picColor", &theme->menu_color)) + "menu.bullet.picColor", &theme->menu_bullet_color)) theme->menu_bullet_color = RrColorNew(inst, 0, 0, 0); if (!read_color(db, inst, "menu.frame.disableColor", &theme->menu_disabled_color)) |
