Skip to content

Commit 95be8fd

Browse files
committedNov 13, 2023
nemo-list-view.c: Don't apply column-expand test unless there is
a drag operation active. This test also affects clicking on the expander.
1 parent b9d396e commit 95be8fd

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed
 

‎src/nemo-list-view.c

+4
Original file line numberDiff line numberDiff line change
@@ -1789,6 +1789,10 @@ test_expand_row_callback (GtkTreeView *treeview,
17891789
{
17901790
NemoListView *view = NEMO_LIST_VIEW (user_data);
17911791

1792+
if (!view->details->drag_started) {
1793+
return ALLOW_EXPAND;
1794+
}
1795+
17921796
if (eel_gtk_get_treeview_row_text_is_under_pointer (view->details->tree_view)) {
17931797
return ALLOW_EXPAND;
17941798
}

0 commit comments

Comments
 (0)
Please sign in to comment.