Skip to content

Commit 9d91efc

Browse files
Fix settings window is minimized when re-opened
1 parent a406eb8 commit 9d91efc

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

Flow.Launcher/SettingWindow.xaml.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,9 @@ public void UpdatePositionAndState()
169169
SetWindowPosition(top, left);
170170
}
171171

172-
WindowState = _settings.SettingWindowState;
172+
WindowState = _settings.SettingWindowState == WindowState.Minimized
173+
? WindowState.Normal
174+
: _settings.SettingWindowState;
173175
}
174176

175177
private void SetWindowPosition(double top, double left)

0 commit comments

Comments
 (0)