diff --git a/Flow.Launcher/SettingWindow.xaml.cs b/Flow.Launcher/SettingWindow.xaml.cs index bad15d2c9..1a75a853b 100644 --- a/Flow.Launcher/SettingWindow.xaml.cs +++ b/Flow.Launcher/SettingWindow.xaml.cs @@ -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; }