summaryrefslogtreecommitdiff
path: root/riscos
diff options
context:
space:
mode:
Diffstat (limited to 'riscos')
-rw-r--r--riscos/hotlist.c17
-rw-r--r--riscos/options.h1
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")