From e7abdcef1adec08d9b87e76d6f670497775cd777 Mon Sep 17 00:00:00 2001 From: DB p Date: Mon, 20 May 2024 17:46:01 +0900 Subject: [PATCH] Fix Logic --- Flow.Launcher/SettingWindow.xaml.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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; }