mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Fix settings window is minimized when re-opened
This commit is contained in:
parent
a406eb83e1
commit
9d91efc197
1 changed files with 3 additions and 1 deletions
|
|
@ -169,7 +169,9 @@ public partial class SettingWindow
|
|||
SetWindowPosition(top, left);
|
||||
}
|
||||
|
||||
WindowState = _settings.SettingWindowState;
|
||||
WindowState = _settings.SettingWindowState == WindowState.Minimized
|
||||
? WindowState.Normal
|
||||
: _settings.SettingWindowState;
|
||||
}
|
||||
|
||||
private void SetWindowPosition(double top, double left)
|
||||
|
|
|
|||
Loading…
Reference in a new issue