summaryrefslogtreecommitdiff
path: root/apps/bookmark.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/bookmark.c')
-rw-r--r--apps/bookmark.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/bookmark.c b/apps/bookmark.c
index 85570839be..dd800f75c0 100644
--- a/apps/bookmark.c
+++ b/apps/bookmark.c
@@ -159,7 +159,7 @@ bool bookmark_mrb_load()
159/* This function handles an autobookmark creation. This is an interface */ 159/* This function handles an autobookmark creation. This is an interface */
160/* function. */ 160/* function. */
161/* ----------------------------------------------------------------------- */ 161/* ----------------------------------------------------------------------- */
162bool bookmark_autobookmark(void) 162bool bookmark_autobookmark(bool prompt_ok)
163{ 163{
164 char* bookmark; 164 char* bookmark;
165 if (!system_check()) 165 if (!system_check())
@@ -192,7 +192,7 @@ bool bookmark_autobookmark(void)
192 const struct text_message message={lines, 2}; 192 const struct text_message message={lines, 2};
193#endif 193#endif
194 194
195 if(gui_syncyesno_run(&message, NULL, NULL)==YESNO_YES) 195 if(prompt_ok && gui_syncyesno_run(&message, NULL, NULL)==YESNO_YES)
196 { 196 {
197 if (global_settings.autocreatebookmark == BOOKMARK_RECENT_ONLY_ASK) 197 if (global_settings.autocreatebookmark == BOOKMARK_RECENT_ONLY_ASK)
198 return write_bookmark(false, bookmark); 198 return write_bookmark(false, bookmark);