summaryrefslogtreecommitdiff
path: root/riscos/hotlist.c
diff options
context:
space:
mode:
authorChris Young <chris@unsatisfactorysoftware.co.uk>2011-07-02 11:41:06 +0000
committerChris Young <chris@unsatisfactorysoftware.co.uk>2011-07-02 11:41:06 +0000
commit4147c185c8d547e041c1d0c81c283ef0c7942cc8 (patch)
treeebb76bbff7bf4e6a628f125bd02d470d76643215 /riscos/hotlist.c
parentf9566b64050c76c9fc78a0b691cf8c83643c847b (diff)
downloadnetsurf-4147c185c8d547e041c1d0c81c283ef0c7942cc8.tar.gz
netsurf-4147c185c8d547e041c1d0c81c283ef0c7942cc8.tar.bz2
When launching multiple URLs from a treeview, allow to open one window with multiple
tabs instead of one window per URL. Make compatible frontends do this by default. svn path=/trunk/netsurf/; revision=12552
Diffstat (limited to 'riscos/hotlist.c')
-rw-r--r--riscos/hotlist.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/riscos/hotlist.c b/riscos/hotlist.c
index 3bb2c59e7..7c52d6d37 100644
--- a/riscos/hotlist.c
+++ b/riscos/hotlist.c
@@ -217,7 +217,7 @@ void ro_gui_hotlist_toolbar_click(button_bar_action action)
break;
case TOOLBAR_BUTTON_LAUNCH:
- hotlist_launch_selected();
+ hotlist_launch_selected(false);
break;
case TOOLBAR_BUTTON_CREATE:
@@ -365,7 +365,7 @@ bool ro_gui_hotlist_menu_select(wimp_w w, wimp_i i, wimp_menu *menu,
hotlist_edit_selected();
return true;
case TREE_SELECTION_LAUNCH:
- hotlist_launch_selected();
+ hotlist_launch_selected(false);
return true;
case TREE_SELECTION_DELETE:
hotlist_delete_selected();