mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Only assign when value is different
This commit is contained in:
parent
2e99ff96c0
commit
81ae8a4687
1 changed files with 2 additions and 0 deletions
|
|
@ -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));
|
||||
|
|
|
|||
Loading…
Reference in a new issue