From 17e671994453da6dcf927d0717ee72fa84b7f6ce Mon Sep 17 00:00:00 2001 From: DB p Date: Wed, 19 Oct 2022 19:25:00 +0900 Subject: [PATCH] Fix Positioning when use quickadjust --- Flow.Launcher/MainWindow.xaml.cs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Flow.Launcher/MainWindow.xaml.cs b/Flow.Launcher/MainWindow.xaml.cs index 01374d849..fcd0670c4 100644 --- a/Flow.Launcher/MainWindow.xaml.cs +++ b/Flow.Launcher/MainWindow.xaml.cs @@ -177,6 +177,12 @@ namespace Flow.Launcher case nameof(Settings.Hotkey): UpdateNotifyIconText(); break; + case nameof(Settings.WindowLeft): + Left = _settings.WindowLeft; + break; + case nameof(Settings.WindowTop): + Top = _settings.WindowTop; + break; } }; }