From ea28b07cae4d0d40850be1417bd00e555e6168fb Mon Sep 17 00:00:00 2001 From: Steve Fryatt Date: Tue, 31 Dec 2013 16:57:47 +0000 Subject: Add confirm_hotlist_remove option to allow users to turn URL removal query off. --- riscos/hotlist.c | 17 +++++++++++++---- riscos/options.h | 1 + 2 files changed, 14 insertions(+), 4 deletions(-) diff --git a/riscos/hotlist.c b/riscos/hotlist.c index b29ba7e19..f47d05e9c 100644 --- a/riscos/hotlist.c +++ b/riscos/hotlist.c @@ -629,12 +629,21 @@ void ro_gui_hotlist_remove_page(nsurl *url) hotlist_delete_url = NULL; } - hotlist_query = query_user("RemoveHotlist", NULL, &remove_funcs, NULL, - messages_get("Remove"), messages_get("DontRemove")); + /* Check with the user before removing the URL, unless they don't + * want us to be careful in which case just do it. + */ - hotlist_delete_url = nsurl_ref(url); + if (nsoption_bool(confirm_hotlist_remove)) { + hotlist_query = query_user("RemoveHotlist", NULL, + &remove_funcs, NULL, + messages_get("Remove"), + messages_get("DontRemove")); - // hotlist_remove_url(url); + hotlist_delete_url = nsurl_ref(url); + } else { + hotlist_remove_url(url); + ro_toolbar_update_all_hotlists(); + } } diff --git a/riscos/options.h b/riscos/options.h index 9ee35929d..cb2b78bd8 100644 --- a/riscos/options.h +++ b/riscos/options.h @@ -53,6 +53,7 @@ NSOPTION_BOOL(no_plugins, false) NSOPTION_BOOL(block_popups, false) NSOPTION_BOOL(strip_extensions, false) NSOPTION_BOOL(confirm_overwrite, true) +NSOPTION_BOOL(confirm_hotlist_remove, true) NSOPTION_STRING(url_path, "NetSurf:URL") NSOPTION_STRING(url_save, CHOICES_PREFIX "URL") NSOPTION_STRING(hotlist_path, "NetSurf:Hotlist") -- cgit v1.2.3