mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Add property changed check
This commit is contained in:
parent
1fea8edb74
commit
647c55eaf7
1 changed files with 5 additions and 2 deletions
|
|
@ -17,8 +17,11 @@ public partial class SelectBrowserViewModel : BaseModel
|
|||
get => selectedCustomBrowserIndex;
|
||||
set
|
||||
{
|
||||
selectedCustomBrowserIndex = value;
|
||||
OnPropertyChanged(nameof(CustomBrowser));
|
||||
if (selectedCustomBrowserIndex != value)
|
||||
{
|
||||
selectedCustomBrowserIndex = value;
|
||||
OnPropertyChanged(nameof(CustomBrowser));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue