diff options
| author | Jonathan Gordon <rockbox@jdgordon.info> | 2009-12-16 08:18:40 +0000 |
|---|---|---|
| committer | Jonathan Gordon <rockbox@jdgordon.info> | 2009-12-16 08:18:40 +0000 |
| commit | b9aabcb1a40aa2705d720e332bef7c390fb0587a (patch) | |
| tree | 95553d9f7ffb5d6982a65866264728b35082ced0 | |
| parent | d24ebd16131dcf580f61947acbdc4c206e9ead0b (diff) | |
| download | rockbox-b9aabcb1a40aa2705d720e332bef7c390fb0587a.zip rockbox-b9aabcb1a40aa2705d720e332bef7c390fb0587a.tar.gz rockbox-b9aabcb1a40aa2705d720e332bef7c390fb0587a.tar.bz2 rockbox-b9aabcb1a40aa2705d720e332bef7c390fb0587a.tar.xz | |
Fix FS#9198 - make the delete bookmark option confirm the action
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24021 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | apps/bookmark.c | 22 |
1 files changed, 19 insertions, 3 deletions
diff --git a/apps/bookmark.c b/apps/bookmark.c index 7d29c4f..1d8e499 100644 --- a/apps/bookmark.c +++ b/apps/bookmark.c @@ -763,9 +763,25 @@ static char* select_bookmark(const char* bookmark_file_name, bool show_dont_resu case ACTION_BMS_DELETE: if (item >= 0) - { - delete_bookmark(bookmark_file_name, item); - bookmarks->reload = true; + { + const char *lines[]={ + ID2P(LANG_REALLY_DELETE), + bookmark_file_name + }; + const char *yes_lines[]={ + ID2P(LANG_DELETING), + bookmark_file_name + }; + + const struct text_message message={lines, 2}; + const struct text_message yes_message={yes_lines, 2}; + + if(gui_syncyesno_run(&message, &yes_message, NULL)==YESNO_YES) + { + splash(0, str(LANG_DELETING)); + delete_bookmark(bookmark_file_name, item); + bookmarks->reload = true; + } refresh = true; } break; |