Merge pull request #6964 from peppy/username-login

Change login placeholder text to ask for username
This commit is contained in:
Dan Balasescu 2019-11-26 12:41:13 +09:00 committed by GitHub
commit 35c25539ae
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -225,7 +225,7 @@ namespace osu.Game.Overlays.Settings.Sections.General
{ {
username = new OsuTextBox username = new OsuTextBox
{ {
PlaceholderText = "email address", PlaceholderText = "username",
RelativeSizeAxes = Axes.X, RelativeSizeAxes = Axes.X,
Text = api?.ProvidedUsername ?? string.Empty, Text = api?.ProvidedUsername ?? string.Empty,
TabbableContentContainer = this TabbableContentContainer = this
@ -239,7 +239,7 @@ namespace osu.Game.Overlays.Settings.Sections.General
}, },
new SettingsCheckbox new SettingsCheckbox
{ {
LabelText = "Remember email address", LabelText = "Remember username",
Bindable = config.GetBindable<bool>(OsuSetting.SaveUsername), Bindable = config.GetBindable<bool>(OsuSetting.SaveUsername),
}, },
new SettingsCheckbox new SettingsCheckbox