From 3938858e33e4a5689a6919b69aae7420edcf52de Mon Sep 17 00:00:00 2001 From: DB p Date: Tue, 30 Apr 2024 02:23:16 +0900 Subject: [PATCH] Fix SettingWindow Position when first launch --- Flow.Launcher/SettingWindow.xaml.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Flow.Launcher/SettingWindow.xaml.cs b/Flow.Launcher/SettingWindow.xaml.cs index 8144c8ff8..bad15d2c9 100644 --- a/Flow.Launcher/SettingWindow.xaml.cs +++ b/Flow.Launcher/SettingWindow.xaml.cs @@ -446,7 +446,7 @@ namespace Flow.Launcher public void InitializePosition() { - if (settings.SettingWindowTop >= 0 && settings.SettingWindowLeft >= 0) + if (settings.SettingWindowTop == null) { Top = settings.SettingWindowTop; Left = settings.SettingWindowLeft;