Merge pull request #387 from 2yangk23/master

Enable Tabbing in LoginOptions
This commit is contained in:
Dean Herbert 2017-02-23 18:08:58 +09:00 committed by GitHub
commit c3ab467e24
1 changed files with 4 additions and 2 deletions

View File

@ -111,12 +111,14 @@ private void load(APIAccess api, OsuConfigManager config)
{
PlaceholderText = "Username",
RelativeSizeAxes = Axes.X,
Text = api?.Username ?? string.Empty
Text = api?.Username ?? string.Empty,
TabbableContentContainer = this
},
password = new OsuPasswordTextBox
{
PlaceholderText = "Password",
RelativeSizeAxes = Axes.X
RelativeSizeAxes = Axes.X,
TabbableContentContainer = this
},
new OsuCheckbox
{