summaryrefslogtreecommitdiff
path: root/apps/plugins/shortcuts/shortcuts_view.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/shortcuts/shortcuts_view.c')
-rw-r--r--apps/plugins/shortcuts/shortcuts_view.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/apps/plugins/shortcuts/shortcuts_view.c b/apps/plugins/shortcuts/shortcuts_view.c
index c9a4655341..cfc9d8d746 100644
--- a/apps/plugins/shortcuts/shortcuts_view.c
+++ b/apps/plugins/shortcuts/shortcuts_view.c
@@ -223,20 +223,16 @@ enum plugin_status plugin_start(const void* void_parameter)
223 return PLUGIN_OK; 223 return PLUGIN_OK;
224 } 224 }
225 225
226#ifdef HAVE_LCD_BITMAP
227 FOR_NB_SCREENS(i) 226 FOR_NB_SCREENS(i)
228 rb->viewportmanager_theme_enable(i, true, NULL); 227 rb->viewportmanager_theme_enable(i, true, NULL);
229#endif
230 228
231 do { 229 do {
232 /* Display a menu to choose between the entries */ 230 /* Display a menu to choose between the entries */
233 leave_loop = list_sc(); 231 leave_loop = list_sc();
234 } while (!leave_loop); 232 } while (!leave_loop);
235 233
236#ifdef HAVE_LCD_BITMAP
237 FOR_NB_SCREENS(i) 234 FOR_NB_SCREENS(i)
238 rb->viewportmanager_theme_undo(i, false); 235 rb->viewportmanager_theme_undo(i, false);
239#endif
240 236
241 return usb_connected ? PLUGIN_USB_CONNECTED : PLUGIN_OK; 237 return usb_connected ? PLUGIN_USB_CONNECTED : PLUGIN_OK;
242} 238}