From 05ace8e095f3de6332560b364a158321867c7bba Mon Sep 17 00:00:00 2001 From: Torne Wuff Date: Sun, 28 Mar 2010 23:27:49 +0000 Subject: Fix "bookmark on stop: ask" when idle poweroff triggers. Previously, the prompt would come up during poweroff, and then if the user did not respond, the shutdown timeout would be hit and a hard poweroff would happen, which is bad. Now it just assumes you don't want a bookmark. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@25376 a1c6a512-1295-4272-9138-f99709370657 --- apps/bookmark.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'apps/bookmark.c') 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() /* This function handles an autobookmark creation. This is an interface */ /* function. */ /* ----------------------------------------------------------------------- */ -bool bookmark_autobookmark(void) +bool bookmark_autobookmark(bool prompt_ok) { char* bookmark; if (!system_check()) @@ -192,7 +192,7 @@ bool bookmark_autobookmark(void) const struct text_message message={lines, 2}; #endif - if(gui_syncyesno_run(&message, NULL, NULL)==YESNO_YES) + if(prompt_ok && gui_syncyesno_run(&message, NULL, NULL)==YESNO_YES) { if (global_settings.autocreatebookmark == BOOKMARK_RECENT_ONLY_ASK) return write_bookmark(false, bookmark); -- cgit v1.2.3