diff options
| author | Jonathan Gordon <rockbox@jdgordon.info> | 2009-12-21 05:19:12 +0000 |
|---|---|---|
| committer | Jonathan Gordon <rockbox@jdgordon.info> | 2009-12-21 05:19:12 +0000 |
| commit | 9d1832cfba5ad91c815aa181b299f5cd53252681 (patch) | |
| tree | 1bc915c0ec15e996189cced2001f7e76f38c49ab /apps/debug_menu.c | |
| parent | 88ae46cc88acf38c72ce3f9f7618d07007c92cd7 (diff) | |
| download | rockbox-9d1832cfba5ad91c815aa181b299f5cd53252681.zip rockbox-9d1832cfba5ad91c815aa181b299f5cd53252681.tar.gz rockbox-9d1832cfba5ad91c815aa181b299f5cd53252681.tar.bz2 rockbox-9d1832cfba5ad91c815aa181b299f5cd53252681.tar.xz | |
fix FS#10870 - slightly change the viewportmanager theme undo-er to be able to force an update even if the theme isnt being toggled from off to on which caused WPS artifacts when leaving the WPS if the theme was enabled
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24087 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/debug_menu.c')
| -rw-r--r-- | apps/debug_menu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/debug_menu.c b/apps/debug_menu.c index 7416930..2691d2d 100644 --- a/apps/debug_menu.c +++ b/apps/debug_menu.c @@ -2665,7 +2665,7 @@ static int menu_action_callback(int btn, struct gui_synclist *lists) menuitems[gui_synclist_get_sel_pos(lists)].function(); btn = ACTION_REDRAW; FOR_NB_SCREENS(i) - viewportmanager_theme_undo(i); + viewportmanager_theme_undo(i, false); } return btn; } |