summaryrefslogtreecommitdiff
path: root/apps/settings.c
diff options
context:
space:
mode:
authorTomer Shalev <shalev.tomer@gmail.com>2009-10-05 17:53:45 +0000
committerTomer Shalev <shalev.tomer@gmail.com>2009-10-05 17:53:45 +0000
commita39be4b3073ef32a3e33bdbf88f0c1474c7b1931 (patch)
tree1f933f70ab0fc45a1aa8b1e95fb24969bd7d5b20 /apps/settings.c
parentf7bd7252e14a151217f1a9b7eee6200eb23586a8 (diff)
downloadrockbox-a39be4b3073ef32a3e33bdbf88f0c1474c7b1931.tar.gz
rockbox-a39be4b3073ef32a3e33bdbf88f0c1474c7b1931.zip
Fix red: Invert buttons in RTL mode
- Revert renaming of button_set_flip() - Moved rtl flipping logic to apps/actions.c as a static function - Joined rtl_button_flip_needed() and button_flip_horizontally() git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22962 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/settings.c')
-rw-r--r--apps/settings.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/settings.c b/apps/settings.c
index ac80d12492..ce1ee07054 100644
--- a/apps/settings.c
+++ b/apps/settings.c
@@ -846,7 +846,7 @@ void settings_apply(bool read_disk)
846#endif 846#endif
847#ifdef HAVE_LCD_FLIP 847#ifdef HAVE_LCD_FLIP
848 lcd_set_flip(global_settings.flip_display); 848 lcd_set_flip(global_settings.flip_display);
849 button_set_flip_vertically(global_settings.flip_display); 849 button_set_flip(global_settings.flip_display);
850#endif 850#endif
851 lcd_update(); /* refresh after flipping the screen */ 851 lcd_update(); /* refresh after flipping the screen */
852 settings_apply_pm_range(); 852 settings_apply_pm_range();