diff options
| author | Jonathan Gordon <rockbox@jdgordon.info> | 2007-03-11 08:05:05 +0000 |
|---|---|---|
| committer | Jonathan Gordon <rockbox@jdgordon.info> | 2007-03-11 08:05:05 +0000 |
| commit | f83d6eb145aab4646968e9a69bdd9c56e5a88926 (patch) | |
| tree | 1cea65a9066cd6d7ef86c71d0c3db74a1efe6a4f /apps/plugins | |
| parent | c2d2106fd76ae553a9f7b2418265209468cbb9e6 (diff) | |
| download | rockbox-f83d6eb145aab4646968e9a69bdd9c56e5a88926.zip rockbox-f83d6eb145aab4646968e9a69bdd9c56e5a88926.tar.gz rockbox-f83d6eb145aab4646968e9a69bdd9c56e5a88926.tar.bz2 rockbox-f83d6eb145aab4646968e9a69bdd9c56e5a88926.tar.xz | |
revert FS#6747 — y-margin reset in gui_list_draw, it introduced a nasty
scroll bug which isnt so simple to fix.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12719 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, 7 insertions, 0 deletions
diff --git a/apps/plugins/solitaire.c b/apps/plugins/solitaire.c index 7899816..5283e40 100644 --- a/apps/plugins/solitaire.c +++ b/apps/plugins/solitaire.c @@ -646,6 +646,7 @@ int solitaire_menu(bool in_game) break; case 3: + rb->lcd_setmargins(0, 0); if (solitaire_help() == HELP_USB) result = MENU_USB; break; @@ -656,6 +657,7 @@ 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 d63684b..543b5c0 100644 --- a/apps/plugins/viewer.c +++ b/apps/plugins/viewer.c @@ -1287,6 +1287,8 @@ 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) @@ -1326,6 +1328,9 @@ static void viewer_menu(void) break; } rb->menu_exit(m); +#ifdef HAVE_LCD_BITMAP + rb->lcd_setmargins(0,0); +#endif viewer_draw(col); } |