Skip to content
Snippets Groups Projects
Commit c5b7bc60 authored by Alexander Schwinn's avatar Alexander Schwinn
Browse files

Open correct folder on middle-click in tree-view (Issue #626)

parent c3367d63
No related merge requests found
......@@ -757,13 +757,19 @@ thunar_tree_view_button_release_event (GtkWidget *widget,
}
else if (G_UNLIKELY (event->button == 2))
{
ThunarFile *file = thunar_tree_view_get_selected_file (view);
GList *files = NULL;
g_object_get (view->preferences, "misc-middle-click-in-tab", &in_tab, NULL);
/* holding ctrl inverts the action */
if ((event->state & GDK_CONTROL_MASK) != 0)
in_tab = !in_tab;
files = g_list_append (files, file);
thunar_launcher_set_selection (view->launcher, files, NULL, NULL);
thunar_launcher_open_selected_folders (view->launcher, in_tab);
g_list_free (files);
/* set the cursor back to the previously selected item */
if (view->select_path != NULL)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment