update dependencies

This commit is contained in:
Robert McRackan 2021-09-03 23:02:28 -04:00
parent 437e85fd12
commit 126919d578
11 changed files with 42 additions and 45 deletions

View file

@ -9,6 +9,6 @@ namespace LibationWinForms
public event PropertyChangedEventHandler PropertyChanged;
public void NotifyPropertyChanged([CallerMemberName] string propertyName = "")
=> this.UIThread(() => PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName)));
=> this.UIThreadAsync(() => PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName)));
}
}