Better scroll dragger position

This commit is contained in:
DrabWeb 2017-05-29 22:00:15 -03:00
parent d29bf58817
commit d8e86da78c

View File

@ -74,7 +74,7 @@ namespace osu.Game.Overlays.Chat
new Container new Container
{ {
RelativeSizeAxes = Axes.Both, RelativeSizeAxes = Axes.Both,
Padding = new MarginPadding { Top = 85 }, Padding = new MarginPadding { Top = 85, Right = WIDTH_PADDING },
Children = new[] Children = new[]
{ {
new ScrollContainer new ScrollContainer
@ -90,7 +90,7 @@ namespace osu.Game.Overlays.Chat
LayoutDuration = 200, LayoutDuration = 200,
LayoutEasing = EasingTypes.OutQuint, LayoutEasing = EasingTypes.OutQuint,
Spacing = new Vector2(0f, 20f), Spacing = new Vector2(0f, 20f),
Padding = new MarginPadding { Top = 20, Bottom = 20, Left = WIDTH_PADDING, Right = WIDTH_PADDING }, Padding = new MarginPadding { Vertical = 20, Left = WIDTH_PADDING },
}, },
}, },
}, },