Browse Source
Merge pull request #9905 from AvaloniaUI/restore-RaisePropertyChanged
Restore RaisePropertyChanged
pull/9949/head
Jumar Macato
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
src/Avalonia.Base/AvaloniaObject.cs
|
|
|
@ -621,7 +621,7 @@ namespace Avalonia |
|
|
|
/// <param name="oldValue">The old property value.</param>
|
|
|
|
/// <param name="newValue">The new property value.</param>
|
|
|
|
/// <param name="priority">The priority of the binding that produced the value.</param>
|
|
|
|
private protected void RaisePropertyChanged<T>( |
|
|
|
protected void RaisePropertyChanged<T>( |
|
|
|
DirectPropertyBase<T> property, |
|
|
|
Optional<T> oldValue, |
|
|
|
BindingValue<T> newValue, |
|
|
|
|