Merge pull request #5709 from peppy/fix-context-menu-in-chat

Fix chat context menus displaying out-of-bounds
This commit is contained in:
Dan Balasescu
2019-08-14 11:40:23 +09:00
committed by GitHub

View File

@ -30,27 +30,24 @@ namespace osu.Game.Overlays.Chat
[BackgroundDependencyLoader] [BackgroundDependencyLoader]
private void load() private void load()
{ {
Children = new Drawable[] Child = new OsuContextMenuContainer
{ {
scroll = new OsuScrollContainer RelativeSizeAxes = Axes.Both,
Masking = true,
Child = scroll = new OsuScrollContainer
{ {
RelativeSizeAxes = Axes.Both, RelativeSizeAxes = Axes.Both,
// Some chat lines have effects that slightly protrude to the bottom, // Some chat lines have effects that slightly protrude to the bottom,
// which we do not want to mask away, hence the padding. // which we do not want to mask away, hence the padding.
Padding = new MarginPadding { Bottom = 5 }, Padding = new MarginPadding { Bottom = 5 },
Child = new OsuContextMenuContainer Child = ChatLineFlow = new ChatLineContainer
{ {
Padding = new MarginPadding { Left = 20, Right = 20 },
RelativeSizeAxes = Axes.X, RelativeSizeAxes = Axes.X,
AutoSizeAxes = Axes.Y, AutoSizeAxes = Axes.Y,
Child = ChatLineFlow = new ChatLineContainer Direction = FillDirection.Vertical,
{ }
Padding = new MarginPadding { Left = 20, Right = 20 }, },
RelativeSizeAxes = Axes.X,
AutoSizeAxes = Axes.Y,
Direction = FillDirection.Vertical,
}
},
}
}; };
newMessagesArrived(Channel.Messages); newMessagesArrived(Channel.Messages);