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 e88e313 commit 0ed13ebCopy full SHA for 0ed13eb
src/Files.App/ViewModels/Layouts/BaseLayoutViewModel.cs
@@ -100,8 +100,6 @@ public async Task DragOverAsync(DragEventArgs e)
100
return;
101
}
102
103
- _itemManipulationModel.ClearSelection();
104
-
105
if (FilesystemHelpers.HasDraggedStorageItems(e.DataView))
106
{
107
e.Handled = true;
@@ -166,6 +164,8 @@ x.Item is ZipStorageFile ||
166
164
e.DragUIOverride.Caption = string.Format("CopyToFolderCaptionText".GetLocalizedResource(), folderName);
167
165
e.AcceptedOperation = DataPackageOperation.Copy;
168
+
+ _itemManipulationModel.ClearSelection();
169
170
catch (COMException ex) when (ex.Message.Contains("RPC server is unavailable"))
171
0 commit comments