1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-26 18:52:55 +08:00

Fix StandAloneChatDisplay's TextBox having different corner radius

This commit is contained in:
Dean Herbert 2021-11-16 17:50:51 +09:00
parent 077d53e3ad
commit f74afb48fd

View File

@ -41,8 +41,10 @@ namespace osu.Game.Online.Chat
/// <param name="postingTextbox">Whether a textbox for posting new messages should be displayed.</param>
public StandAloneChatDisplay(bool postingTextbox = false)
{
const float corner_radius = 10;
this.postingTextbox = postingTextbox;
CornerRadius = 10;
CornerRadius = corner_radius;
Masking = true;
InternalChildren = new Drawable[]
@ -62,6 +64,7 @@ namespace osu.Game.Online.Chat
RelativeSizeAxes = Axes.X,
Height = textbox_height,
PlaceholderText = "type your message",
CornerRadius = corner_radius,
ReleaseFocusOnCommit = false,
HoldFocus = true,
Anchor = Anchor.BottomLeft,