summaryrefslogtreecommitdiff
path: root/apps/bookmark.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/bookmark.c')
-rw-r--r--apps/bookmark.c10
1 files changed, 4 insertions, 6 deletions
diff --git a/apps/bookmark.c b/apps/bookmark.c
index 892a3d35b2..5b92767796 100644
--- a/apps/bookmark.c
+++ b/apps/bookmark.c
@@ -164,6 +164,7 @@ bool bookmark_autobookmark(void)
164 char* bookmark; 164 char* bookmark;
165 if (!system_check()) 165 if (!system_check())
166 return false; 166 return false;
167 int i;
167 168
168 audio_pause(); /* first pause playback */ 169 audio_pause(); /* first pause playback */
169 bookmark = create_bookmark(); 170 bookmark = create_bookmark();
@@ -191,12 +192,9 @@ bool bookmark_autobookmark(void)
191 str(LANG_CONFIRM_WITH_BUTTON)}; 192 str(LANG_CONFIRM_WITH_BUTTON)};
192 const struct text_message message={lines, 2}; 193 const struct text_message message={lines, 2};
193#endif 194#endif
194#if LCD_DEPTH > 1 195 FOR_NB_SCREENS(i)
195 show_main_backdrop(); /* switch to main backdrop as we may come from wps */ 196 screens[i].backdrop_show(BACKDROP_MAIN);
196#endif 197
197#if defined(HAVE_REMOTE_LCD) && LCD_REMOTE_DEPTH > 1
198 show_remote_main_backdrop();
199#endif
200 if(gui_syncyesno_run(&message, NULL, NULL)==YESNO_YES) 198 if(gui_syncyesno_run(&message, NULL, NULL)==YESNO_YES)
201 { 199 {
202 if (global_settings.autocreatebookmark == BOOKMARK_RECENT_ONLY_ASK) 200 if (global_settings.autocreatebookmark == BOOKMARK_RECENT_ONLY_ASK)