Skip to content

Commit

Permalink
Ensure overlay appears after drag-dropped files are selected (#2157)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeremy Wootten authored Apr 5, 2023
1 parent cb7ecc5 commit 2ab0c60
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
4 changes: 2 additions & 2 deletions data/io.elementary.files.appdata.xml.in.in
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@
<issue url="https://github.com/elementary/files/issues/2141">Reinstate mount option in storage menu</issue>
<issue url="https://github.com/elementary/files/issues/2148">Fix crash when entering path on other Linux</issue>
<issue url="https://github.com/elementary/files/issues/2151">Fix no norubberband selection in List View if started outside list</issue>
<issue url="https://github.com/elementary/files/issues/2152">Fix List View selection not persisting when changing to Icon View
</issue>
<issue url="https://github.com/elementary/files/issues/2152">Fix List View selection not persisting when changing to Icon View</issue>
<issue url="https://github.com/elementary/files/issues/2153">Property overlay doesn't appear when selection is created by drag-drop or paste</issue>
</issues>
</release>

Expand Down
5 changes: 5 additions & 0 deletions src/View/AbstractDirectoryView.vala
Original file line number Diff line number Diff line change
Expand Up @@ -1686,6 +1686,11 @@ namespace Files {
timestamp
);

Idle.add (() => {
update_selected_files_and_menu ();
return Source.REMOVE;
});

break;

default:
Expand Down

0 comments on commit 2ab0c60

Please sign in to comment.