summaryrefslogtreecommitdiff
path: root/apps/plugins
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins')
-rw-r--r--apps/plugins/solitaire.c2
-rw-r--r--apps/plugins/viewer.c5
2 files changed, 0 insertions, 7 deletions
diff --git a/apps/plugins/solitaire.c b/apps/plugins/solitaire.c
index 5283e40f4b..78998166ec 100644
--- a/apps/plugins/solitaire.c
+++ b/apps/plugins/solitaire.c
@@ -646,7 +646,6 @@ int solitaire_menu(bool in_game)
646 break; 646 break;
647 647
648 case 3: 648 case 3:
649 rb->lcd_setmargins(0, 0);
650 if (solitaire_help() == HELP_USB) 649 if (solitaire_help() == HELP_USB)
651 result = MENU_USB; 650 result = MENU_USB;
652 break; 651 break;
@@ -657,7 +656,6 @@ int solitaire_menu(bool in_game)
657 } 656 }
658 } 657 }
659 rb->menu_exit(m); 658 rb->menu_exit(m);
660 rb->lcd_setmargins(0, 0);
661 return result; 659 return result;
662} 660}
663 661
diff --git a/apps/plugins/viewer.c b/apps/plugins/viewer.c
index 543b5c0d1d..d63684b793 100644
--- a/apps/plugins/viewer.c
+++ b/apps/plugins/viewer.c
@@ -1287,8 +1287,6 @@ static bool viewer_options_menu(void)
1287 result = rb->menu_run(m); 1287 result = rb->menu_run(m);
1288 rb->menu_exit(m); 1288 rb->menu_exit(m);
1289#ifdef HAVE_LCD_BITMAP 1289#ifdef HAVE_LCD_BITMAP
1290 rb->lcd_setmargins(0,0);
1291
1292 /* Show-scrollbar mode for current view-width mode */ 1290 /* Show-scrollbar mode for current view-width mode */
1293 if (!ONE_SCREEN_FITS_ALL()) 1291 if (!ONE_SCREEN_FITS_ALL())
1294 if (prefs.scrollbar_mode == true) 1292 if (prefs.scrollbar_mode == true)
@@ -1328,9 +1326,6 @@ static void viewer_menu(void)
1328 break; 1326 break;
1329 } 1327 }
1330 rb->menu_exit(m); 1328 rb->menu_exit(m);
1331#ifdef HAVE_LCD_BITMAP
1332 rb->lcd_setmargins(0,0);
1333#endif
1334 viewer_draw(col); 1329 viewer_draw(col);
1335} 1330}
1336 1331