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 5b5cac6 commit e57816dCopy full SHA for e57816d
Flow.Launcher.Infrastructure/QuickSwitch/QuickSwitch.cs
@@ -516,6 +516,9 @@ private static unsafe void EnumerateShellWindows(Action<object> action)
516
517
public static void Dispose()
518
{
519
+ // Reset initialize flag
520
+ _isInitialized = false;
521
+
522
// Dispose handle
523
if (_foregroundChangeHook != null)
524
@@ -544,6 +547,13 @@ public static void Dispose()
544
547
Marshal.ReleaseComObject(_lastExplorerView);
545
548
_lastExplorerView = null;
546
549
}
550
551
+ // Stop drag move timer
552
+ if (_dragMoveTimer != null)
553
+ {
554
+ _dragMoveTimer.Stop();
555
+ _dragMoveTimer = null;
556
+ }
557
558
559
0 commit comments