Fix Logic

This commit is contained in:
DB p 2024-05-20 17:46:01 +09:00
parent 3938858e33
commit e7abdcef1a

View file

@ -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;
}