This commit is contained in:
DrabWeb 2018-06-07 00:51:27 -03:00
parent f13f71b1e9
commit fb96b30555
1 changed files with 3 additions and 5 deletions

View File

@ -66,6 +66,7 @@ public RoomSettingsOverlay(Room room)
{
Child = Name = new SettingsTextBox
{
RelativeSizeAxes = Axes.X,
OnCommit = (sender, text) => apply(),
},
},
@ -107,6 +108,7 @@ public RoomSettingsOverlay(Room room)
{
Child = MaxParticipants = new SettingsTextBox
{
RelativeSizeAxes = Axes.X,
OnCommit = (sender, text) => apply(),
},
},
@ -114,6 +116,7 @@ public RoomSettingsOverlay(Room room)
{
Child = new SettingsTextBox
{
RelativeSizeAxes = Axes.X,
OnCommit = (sender, text) => apply(),
},
},
@ -198,11 +201,6 @@ private class SettingsTextBox : OsuTextBox
Text = c.ToString(),
TextSize = 18,
};
public SettingsTextBox()
{
RelativeSizeAxes = Axes.X;
}
}
private class SectionContainer : FillFlowContainer<Section>