1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-15 02:43:01 +08:00

Make multiplayer change room settings more obvious as to what it does

"Edit" felt really weird.
This commit is contained in:
Dean Herbert 2025-01-29 19:48:04 +09:00
parent c079969e72
commit a6814d1a8a
No known key found for this signature in database

View File

@ -49,8 +49,10 @@ namespace osu.Game.Screens.OnlinePlay.Match
ButtonsContainer.Add(editButton = new PurpleRoundedButton ButtonsContainer.Add(editButton = new PurpleRoundedButton
{ {
RelativeSizeAxes = Axes.Y, RelativeSizeAxes = Axes.Y,
Size = new Vector2(100, 1), Anchor = Anchor.Centre,
Text = CommonStrings.ButtonsEdit, Origin = Anchor.Centre,
Size = new Vector2(120, 0.7f),
Text = "Change settings",
Action = () => OnEdit?.Invoke() Action = () => OnEdit?.Invoke()
}); });
} }