summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
Diffstat (limited to 'apps')
-rw-r--r--apps/plugins/jpeg.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/apps/plugins/jpeg.c b/apps/plugins/jpeg.c
index 5166f4ef5e..34640d8b92 100644
--- a/apps/plugins/jpeg.c
+++ b/apps/plugins/jpeg.c
@@ -2140,7 +2140,7 @@ int show_menu(void) /* return 1 to quit */
case 4:
break;
}
- MYLCD(clear_display)();
+ rb->lcd_clear_display();
rb->menu_exit(m);
return 0;
}
@@ -2727,13 +2727,14 @@ int load_and_show(char* filename)
#ifdef USEGSLIB
gray_show(false); /* switch off overlay */
-#else
- rb->lcd_clear_display();
#endif
-
+ rb->lcd_clear_display();
}
while (status != PLUGIN_OK && status != PLUGIN_USB_CONNECTED
&& status != PLUGIN_OTHER);
+#ifdef USEGSLIB
+ rb->lcd_update();
+#endif
return status;
}