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 --- gtk/history.c | 2 +- gtk/hotlist.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'gtk') diff --git a/gtk/history.c b/gtk/history.c index b5c019f76..34c76cd7d 100644 --- a/gtk/history.c +++ b/gtk/history.c @@ -258,6 +258,6 @@ MENUHANDLER(collapse_addresses) MENUHANDLER(launch) { - history_global_launch_selected(); + history_global_launch_selected(true); return TRUE; } diff --git a/gtk/hotlist.c b/gtk/hotlist.c index 6a821d7a3..f6f11c73b 100644 --- a/gtk/hotlist.c +++ b/gtk/hotlist.c @@ -274,6 +274,6 @@ MENUHANDLER(collapse_addresses) MENUHANDLER(launch) { - hotlist_launch_selected(); + hotlist_launch_selected(true); return TRUE; } -- cgit v1.2.3