Skip to content
Snippets Groups Projects
Commit 518f4e3c authored by Theo Linkspfeifer's avatar Theo Linkspfeifer :speech_balloon: Committed by Alexander Schwinn
Browse files

Fix unavailable rubber banding in detailed view (Fixes #326)

parent ca842d6a
No related branches found
No related tags found
No related merge requests found
Pipeline #784 passed
......@@ -669,6 +669,9 @@ thunar_details_view_button_press_event (GtkTreeView *tree_view,
/* grab the tree view */
gtk_widget_grab_focus (GTK_WIDGET (tree_view));
/* make sure that rubber banding is enabled */
gtk_tree_view_set_rubber_banding (tree_view, TRUE);
gtk_tree_view_get_cursor (tree_view, &cursor_path, NULL);
if (cursor_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