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 --- desktop/hotlist.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'desktop/hotlist.c') diff --git a/desktop/hotlist.c b/desktop/hotlist.c index a740458cb..acfef10cd 100644 --- a/desktop/hotlist.c +++ b/desktop/hotlist.c @@ -454,8 +454,10 @@ void hotlist_add_page_xy(const char *url, int x, int y) /** * Open the selected entries in separate browser windows. + * + * \param tabs open multiple entries in tabs in the new window */ -void hotlist_launch_selected(void) +void hotlist_launch_selected(bool tabs) { - tree_launch_selected(hotlist_tree); + tree_launch_selected(hotlist_tree, tabs); } -- cgit v1.2.3