Browse Source
Merge pull request #12575 from Actipro/fix-track-prop-arrange
Fix for Track not arranging after IsDirectionReversed property changed.
pull/12579/head
Dan Walmsley
3 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.Controls/Primitives/Track.cs
|
|
|
@ -52,7 +52,7 @@ namespace Avalonia.Controls.Primitives |
|
|
|
ThumbProperty.Changed.AddClassHandler<Track>((x, e) => x.ThumbChanged(e)); |
|
|
|
IncreaseButtonProperty.Changed.AddClassHandler<Track>((x, e) => x.ButtonChanged(e)); |
|
|
|
DecreaseButtonProperty.Changed.AddClassHandler<Track>((x, e) => x.ButtonChanged(e)); |
|
|
|
AffectsArrange<Track>(MinimumProperty, MaximumProperty, ValueProperty, OrientationProperty); |
|
|
|
AffectsArrange<Track>(IsDirectionReversedProperty, MinimumProperty, MaximumProperty, ValueProperty, OrientationProperty); |
|
|
|
} |
|
|
|
|
|
|
|
public Track() |
|
|
|
|