From 9d91efc1974e0fdb663c2ed56add00dd7b020ac3 Mon Sep 17 00:00:00 2001 From: VictoriousRaptor <10308169+VictoriousRaptor@users.noreply.github.com> Date: Tue, 10 Mar 2026 21:47:14 +0800 Subject: [PATCH] Fix settings window is minimized when re-opened --- Flow.Launcher/SettingWindow.xaml.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Flow.Launcher/SettingWindow.xaml.cs b/Flow.Launcher/SettingWindow.xaml.cs index a318592a6..3b32215d5 100644 --- a/Flow.Launcher/SettingWindow.xaml.cs +++ b/Flow.Launcher/SettingWindow.xaml.cs @@ -169,7 +169,9 @@ public partial class SettingWindow SetWindowPosition(top, left); } - WindowState = _settings.SettingWindowState; + WindowState = _settings.SettingWindowState == WindowState.Minimized + ? WindowState.Normal + : _settings.SettingWindowState; } private void SetWindowPosition(double top, double left)