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 8af41b6 commit e50fd80Copy full SHA for e50fd80
Flow.Launcher/ViewModel/MainViewModel.cs
@@ -1862,8 +1862,12 @@ public async Task SetupQuickSwitchAsync(nint handle)
1862
await Task.Delay(300);
1863
}
1864
1865
- // If handle is cleared, which means the dialog is closed, do nothing
1866
- if (DialogWindowHandle == nint.Zero) return;
+ // If handle is cleared, which means the dialog is closed, clear quick switch state
+ if (DialogWindowHandle == nint.Zero)
1867
+ {
1868
+ _isQuickSwitch = false;
1869
+ return;
1870
+ }
1871
1872
// Initialize quick switch window
1873
if (MainWindowVisibilityStatus)
0 commit comments