summaryrefslogtreecommitdiff
path: root/apps/menus/theme_menu.c
diff options
context:
space:
mode:
authorAndree Buschmann <AndreeBuschmann@t-online.de>2010-06-12 20:50:45 +0000
committerAndree Buschmann <AndreeBuschmann@t-online.de>2010-06-12 20:50:45 +0000
commit50954cdc92996dd6a8446b9004b63efe54917a3a (patch)
treeefb257da9a2f192ecf200f6f98201fd7e6358f80 /apps/menus/theme_menu.c
parent12e85b609f0c12fcff26200e54854a52d9ca1f99 (diff)
downloadrockbox-50954cdc92996dd6a8446b9004b63efe54917a3a.tar.gz
rockbox-50954cdc92996dd6a8446b9004b63efe54917a3a.zip
Fix FS#111395. Call settings_apply_skins() after changing theme colours.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26821 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/menus/theme_menu.c')
-rw-r--r--apps/menus/theme_menu.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/menus/theme_menu.c b/apps/menus/theme_menu.c
index f2a1cd2f17..f8fb06b22f 100644
--- a/apps/menus/theme_menu.c
+++ b/apps/menus/theme_menu.c
@@ -97,6 +97,7 @@ static int set_color_func(void* color)
97 colors[c].setting, banned_color); 97 colors[c].setting, banned_color);
98 settings_save(); 98 settings_save();
99 settings_apply(false); 99 settings_apply(false);
100 settings_apply_skins();
100 return res; 101 return res;
101} 102}
102 103