Browse Source

Match formatting of other block.

pull/1298/head
Steven Kirk 9 years ago
parent
commit
7405cd7952
  1. 6
      src/Avalonia.Controls/Primitives/Track.cs

6
src/Avalonia.Controls/Primitives/Track.cs

@ -189,7 +189,11 @@ namespace Avalonia.Controls.Primitives
if (increaseButton != null)
{
increaseButton.Arrange(new Rect(0, firstHeight + thumbHeight, finalSize.Width, Math.Max(remaining - firstHeight, 0)));
increaseButton.Arrange(new Rect(
0,
firstHeight + thumbHeight,
finalSize.Width,
Math.Max(remaining - firstHeight, 0)));
}
}

Loading…
Cancel
Save