From 4147c185c8d547e041c1d0c81c283ef0c7942cc8 Mon Sep 17 00:00:00 2001 From: Chris Young Date: Sat, 2 Jul 2011 11:41:06 +0000 Subject: 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 --- riscos/global_history.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'riscos/global_history.c') diff --git a/riscos/global_history.c b/riscos/global_history.c index 28fd107ce..a6b43b863 100644 --- a/riscos/global_history.c +++ b/riscos/global_history.c @@ -213,7 +213,7 @@ void ro_gui_global_history_toolbar_click(button_bar_action action) break; case TOOLBAR_BUTTON_LAUNCH: - history_global_launch_selected(); + history_global_launch_selected(false); break; default: @@ -352,7 +352,7 @@ bool ro_gui_global_history_menu_select(wimp_w w, wimp_i i, wimp_menu *menu, history_global_collapse_addresses(); return true; case TREE_SELECTION_LAUNCH: - history_global_launch_selected(); + history_global_launch_selected(false); return true; case TREE_SELECTION_DELETE: history_global_delete_selected(); -- cgit v1.2.3