summaryrefslogtreecommitdiff
path: root/desktop/history_global_core.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 /desktop/history_global_core.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 'desktop/history_global_core.c')
-rw-r--r--desktop/history_global_core.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/desktop/history_global_core.c b/desktop/history_global_core.c
index 8c8834834..f06d79d8b 100644
--- a/desktop/history_global_core.c
+++ b/desktop/history_global_core.c
@@ -452,8 +452,10 @@ void history_global_collapse_addresses(void)
/**
* Open the selected entries in seperate browser windows.
+ *
+ * \param tabs open multiple entries in tabs in the new window
*/
-void history_global_launch_selected(void)
+void history_global_launch_selected(bool tabs)
{
- tree_launch_selected(global_history_tree);
+ tree_launch_selected(global_history_tree, tabs);
}