mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Fix Logic
This commit is contained in:
parent
3938858e33
commit
e7abdcef1a
1 changed files with 4 additions and 4 deletions
|
|
@ -448,13 +448,13 @@ namespace Flow.Launcher
|
|||
{
|
||||
if (settings.SettingWindowTop == null)
|
||||
{
|
||||
Top = settings.SettingWindowTop;
|
||||
Left = settings.SettingWindowLeft;
|
||||
Top = WindowTop();
|
||||
Left = WindowLeft();
|
||||
}
|
||||
else
|
||||
{
|
||||
Top = WindowTop();
|
||||
Left = WindowLeft();
|
||||
Top = settings.SettingWindowTop;
|
||||
Left = settings.SettingWindowLeft;
|
||||
}
|
||||
WindowState = settings.SettingWindowState;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue