Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/fixes/clip-bounds-invalidate' in…
Browse files Browse the repository at this point in the history
…to fixes/clip-bounds-invalidate
  • Loading branch information
stepangovorko committed Aug 18, 2023
2 parents 521b5c4 + c0d7afb commit 8ecf014
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Avalonia.Controls/Primitives/Track.cs
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ static Track()
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()
Expand Down

0 comments on commit 8ecf014

Please sign in to comment.