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 0e02416 commit 854cc69Copy full SHA for 854cc69
Flow.Launcher/ViewModel/MainViewModel.cs
@@ -1590,7 +1590,9 @@ public bool ShouldIgnoreHotkeys()
1590
1591
public async void SetupQuickSwitch(nint handle)
1592
{
1593
- if (handle != nint.Zero && DialogWindowHandle != handle) // Only set once for one file dialog
+ if (handle == nint.Zero) return;
1594
+
1595
+ if (DialogWindowHandle != handle) // Only set once for one file dialog
1596
1597
PreviousMainWindowVisibilityStatus = MainWindowVisibilityStatus;
1598
DialogWindowHandle = handle;
0 commit comments