summaryrefslogtreecommitdiff
path: root/apps/plugins/viewer.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/viewer.c')
-rw-r--r--apps/plugins/viewer.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/apps/plugins/viewer.c b/apps/plugins/viewer.c
index d63684b793..543b5c0d1d 100644
--- a/apps/plugins/viewer.c
+++ b/apps/plugins/viewer.c
@@ -1287,6 +1287,8 @@ 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
1290 /* Show-scrollbar mode for current view-width mode */ 1292 /* Show-scrollbar mode for current view-width mode */
1291 if (!ONE_SCREEN_FITS_ALL()) 1293 if (!ONE_SCREEN_FITS_ALL())
1292 if (prefs.scrollbar_mode == true) 1294 if (prefs.scrollbar_mode == true)
@@ -1326,6 +1328,9 @@ static void viewer_menu(void)
1326 break; 1328 break;
1327 } 1329 }
1328 rb->menu_exit(m); 1330 rb->menu_exit(m);
1331#ifdef HAVE_LCD_BITMAP
1332 rb->lcd_setmargins(0,0);
1333#endif
1329 viewer_draw(col); 1334 viewer_draw(col);
1330} 1335}
1331 1336