Revert: only call notifyPropertyChanged if actually set to new value

This commit is contained in:
Robert McRackan 2022-05-14 12:34:01 -04:00
parent 9bdcaa5eaa
commit 28a8b2e685
2 changed files with 13 additions and 42 deletions

View file

@ -136,11 +136,8 @@ namespace LibationWinForms.Dialogs
}
set
{
if (_remove != value)
{
_remove = value;
NotifyPropertyChanged();
}
_remove = value;
NotifyPropertyChanged();
}
}