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));