From bf5591c9a84c6cf58f0b5be162729626c8681e23 Mon Sep 17 00:00:00 2001 From: Jack251970 <1160210343@qq.com> Date: Sun, 16 Mar 2025 23:19:35 +0800 Subject: [PATCH] Fix position set issue --- Flow.Launcher/MainWindow.xaml.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Flow.Launcher/MainWindow.xaml.cs b/Flow.Launcher/MainWindow.xaml.cs index 9038762f2..aa77d64f3 100644 --- a/Flow.Launcher/MainWindow.xaml.cs +++ b/Flow.Launcher/MainWindow.xaml.cs @@ -65,7 +65,8 @@ namespace Flow.Launcher _settings = settings; InitializeComponent(); - + UpdatePosition(true); + InitSoundEffects(); DataObject.AddPastingHandler(QueryTextBox, QueryTextBox_OnPaste); } @@ -97,6 +98,7 @@ namespace Flow.Launcher } // Hide window if need + UpdatePosition(true); if (_settings.HideOnStartup) { _viewModel.Hide();