Browse Source
* Correct a priority value in property set log message
* Correct a comment
pull/15282/head
Heku
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
2 additions and
2 deletions
-
src/Avalonia.Base/AvaloniaObject.cs
-
src/Avalonia.Base/AvaloniaProperty.cs
|
|
|
@ -326,7 +326,7 @@ namespace Avalonia |
|
|
|
VerifyAccess(); |
|
|
|
ValidatePriority(priority); |
|
|
|
|
|
|
|
LogPropertySet(property, value, BindingPriority.LocalValue); |
|
|
|
LogPropertySet(property, value, priority); |
|
|
|
|
|
|
|
if (value is UnsetValueType) |
|
|
|
{ |
|
|
|
|
|
|
|
@ -271,7 +271,7 @@ namespace Avalonia |
|
|
|
} |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Registers an attached <see cref="AvaloniaProperty"/>.
|
|
|
|
/// Registers a <see cref="AvaloniaProperty"/>.
|
|
|
|
/// </summary>
|
|
|
|
/// <typeparam name="TOwner">The type of the class that is registering the property.</typeparam>
|
|
|
|
/// <typeparam name="TValue">The type of the property's value.</typeparam>
|
|
|
|
|