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 f3fcd04 commit d848cd1Copy full SHA for d848cd1
src/Files.App/Helpers/FileOperationsHelpers.cs
@@ -10,6 +10,7 @@
10
using System.Collections.Concurrent;
11
using System.Collections.Generic;
12
using System.ComponentModel;
13
+using System.Diagnostics;
14
using System.IO;
15
using System.Linq;
16
using System.Runtime.InteropServices;
@@ -179,7 +180,7 @@ public static Task<bool> DragDropAsync(string dropPath)
179
180
}
181
182
var deleteTcs = new TaskCompletionSource<bool>();
- op.PreDeleteItem += (s, e) =>
183
+ op.PreDeleteItem += [DebuggerHidden] (s, e) =>
184
{
185
if (!e.Flags.HasFlag(ShellFileOperations.TransferFlags.DeleteRecycleIfPossible))
186
0 commit comments