diff options
| author | Jonathan Gordon <rockbox@jdgordon.info> | 2007-03-10 12:43:21 +0000 |
|---|---|---|
| committer | Jonathan Gordon <rockbox@jdgordon.info> | 2007-03-10 12:43:21 +0000 |
| commit | a990ff2920884ba6810dd222fd99ca627fd0e5d6 (patch) | |
| tree | 66111a2bc5430bbc02c932eed694b22c40199b56 /apps/plugins | |
| parent | 3631f11feab94aaa1f4da4d7ddb2ea3e746cb9ec (diff) | |
| download | rockbox-a990ff2920884ba6810dd222fd99ca627fd0e5d6.zip rockbox-a990ff2920884ba6810dd222fd99ca627fd0e5d6.tar.gz rockbox-a990ff2920884ba6810dd222fd99ca627fd0e5d6.tar.bz2 rockbox-a990ff2920884ba6810dd222fd99ca627fd0e5d6.tar.xz | |
Accept FS#6747 by Timo Horstschäfer
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12704 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins')
| -rw-r--r-- | apps/plugins/solitaire.c | 2 | ||||
| -rw-r--r-- | apps/plugins/viewer.c | 5 |
2 files changed, 0 insertions, 7 deletions
diff --git a/apps/plugins/solitaire.c b/apps/plugins/solitaire.c index 5283e40..7899816 100644 --- a/apps/plugins/solitaire.c +++ b/apps/plugins/solitaire.c @@ -646,7 +646,6 @@ int solitaire_menu(bool in_game) break; case 3: - rb->lcd_setmargins(0, 0); if (solitaire_help() == HELP_USB) result = MENU_USB; break; @@ -657,7 +656,6 @@ int solitaire_menu(bool in_game) } } rb->menu_exit(m); - rb->lcd_setmargins(0, 0); return result; } diff --git a/apps/plugins/viewer.c b/apps/plugins/viewer.c index 543b5c0..d63684b 100644 --- a/apps/plugins/viewer.c +++ b/apps/plugins/viewer.c @@ -1287,8 +1287,6 @@ static bool viewer_options_menu(void) result = rb->menu_run(m); rb->menu_exit(m); #ifdef HAVE_LCD_BITMAP - rb->lcd_setmargins(0,0); - /* Show-scrollbar mode for current view-width mode */ if (!ONE_SCREEN_FITS_ALL()) if (prefs.scrollbar_mode == true) @@ -1328,9 +1326,6 @@ static void viewer_menu(void) break; } rb->menu_exit(m); -#ifdef HAVE_LCD_BITMAP - rb->lcd_setmargins(0,0); -#endif viewer_draw(col); } |