diff --git a/Flow.Launcher/MainWindow.xaml.cs b/Flow.Launcher/MainWindow.xaml.cs index 06b2dda9e..113f1f583 100644 --- a/Flow.Launcher/MainWindow.xaml.cs +++ b/Flow.Launcher/MainWindow.xaml.cs @@ -109,7 +109,10 @@ namespace Flow.Launcher private void ViewModel_ActualApplicationThemeChanged(object sender, ActualApplicationThemeChangedEventArgs args) { - _ = _theme.RefreshFrameAsync(); + if (_settings.ColorScheme == Constant.System) + { + _ = _theme.RefreshFrameAsync(); + } } private void OnSourceInitialized(object sender, EventArgs e)