Only assign when value is different

This commit is contained in:
VictoriousRaptor 2025-07-18 21:33:32 +08:00
parent 2e99ff96c0
commit 81ae8a4687

View file

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