1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-16 09:17:31 +08:00

Rename picker class to match new naming

This commit is contained in:
Dean Herbert 2021-08-03 17:47:53 +09:00
parent 2564c0c3df
commit 01f15bd6fc
2 changed files with 4 additions and 4 deletions

View File

@ -14,7 +14,7 @@ using osuTK;
namespace osu.Game.Screens.OnlinePlay.Match.Components namespace osu.Game.Screens.OnlinePlay.Match.Components
{ {
public class GameTypePicker : DisableableTabControl<MatchType> public class MatchTypePicker : DisableableTabControl<MatchType>
{ {
private const float height = 40; private const float height = 40;
private const float selection_width = 3; private const float selection_width = 3;
@ -23,7 +23,7 @@ namespace osu.Game.Screens.OnlinePlay.Match.Components
protected override Dropdown<MatchType> CreateDropdown() => null; protected override Dropdown<MatchType> CreateDropdown() => null;
public GameTypePicker() public MatchTypePicker()
{ {
Height = height + selection_width * 2; Height = height + selection_width * 2;
TabContainer.Spacing = new Vector2(10 - selection_width * 2); TabContainer.Spacing = new Vector2(10 - selection_width * 2);

View File

@ -44,7 +44,7 @@ namespace osu.Game.Screens.OnlinePlay.Multiplayer.Match
public OsuTextBox NameField, MaxParticipantsField; public OsuTextBox NameField, MaxParticipantsField;
public RoomAvailabilityPicker AvailabilityPicker; public RoomAvailabilityPicker AvailabilityPicker;
public GameTypePicker TypePicker; public MatchTypePicker TypePicker;
public OsuTextBox PasswordTextBox; public OsuTextBox PasswordTextBox;
public TriangleButton ApplyButton; public TriangleButton ApplyButton;
@ -158,7 +158,7 @@ namespace osu.Game.Screens.OnlinePlay.Multiplayer.Match
Spacing = new Vector2(7), Spacing = new Vector2(7),
Children = new Drawable[] Children = new Drawable[]
{ {
TypePicker = new GameTypePicker TypePicker = new MatchTypePicker
{ {
RelativeSizeAxes = Axes.X, RelativeSizeAxes = Axes.X,
Enabled = { Value = false } Enabled = { Value = false }