From 81ae8a46870cdfc9445ed57362b2603483a84594 Mon Sep 17 00:00:00 2001 From: VictoriousRaptor <10308169+VictoriousRaptor@users.noreply.github.com> Date: Fri, 18 Jul 2025 21:33:32 +0800 Subject: [PATCH] Only assign when value is different --- .../ViewModels/SettingsViewModel.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Plugins/Flow.Launcher.Plugin.Explorer/ViewModels/SettingsViewModel.cs b/Plugins/Flow.Launcher.Plugin.Explorer/ViewModels/SettingsViewModel.cs index 676a0239b..b50496e6e 100644 --- a/Plugins/Flow.Launcher.Plugin.Explorer/ViewModels/SettingsViewModel.cs +++ b/Plugins/Flow.Launcher.Plugin.Explorer/ViewModels/SettingsViewModel.cs @@ -611,6 +611,8 @@ namespace Flow.Launcher.Plugin.Explorer.ViewModels get => Settings.SortOption; set { + if (value == Settings.SortOption) + return; Settings.SortOption = value; OnPropertyChanged(nameof(SelectedEverythingSortOption)); OnPropertyChanged(nameof(FastSortWarningVisibility));