From 121084f4c1db0d4346a307a308fbb9760c297774 Mon Sep 17 00:00:00 2001 From: VictoriousRaptor <10308169+VictoriousRaptor@users.noreply.github.com> Date: Tue, 10 Mar 2026 21:48:33 +0800 Subject: [PATCH] Don't save minimized state --- 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 3b32215d5..054c60c8a 100644 --- a/Flow.Launcher/SettingWindow.xaml.cs +++ b/Flow.Launcher/SettingWindow.xaml.cs @@ -96,7 +96,7 @@ public partial class SettingWindow private void Window_StateChanged(object sender, EventArgs e) { RefreshMaximizeRestoreButton(); - if (IsLoaded) + if (IsLoaded && WindowState != WindowState.Minimized) { _settings.SettingWindowState = WindowState; }