We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 41febf9 commit 9ef4393Copy full SHA for 9ef4393
1 file changed
libcore/DndHandler.vala
@@ -388,7 +388,7 @@ namespace Files {
388
var actions = possible_actions;
389
var suggested_action = selected_action;
390
var target_location = dest.get_target_location ();
391
- suggested_action_return = Gdk.DragAction.PRIVATE;
+ suggested_action_return = Gdk.DragAction.DEFAULT;
392
393
if (drop_file_list == null || drop_file_list.data == null) {
394
return Gdk.DragAction.DEFAULT;
@@ -406,8 +406,7 @@ namespace Files {
406
} else if (dest.is_executable ()) {
407
actions |= (Gdk.DragAction.COPY |
408
Gdk.DragAction.MOVE |
409
- Gdk.DragAction.LINK |
410
- Gdk.DragAction.PRIVATE);
+ Gdk.DragAction.LINK
411
} else {
412
actions = Gdk.DragAction.DEFAULT;
413
}
0 commit comments