Put back the label

This commit is contained in:
Dean Herbert 2021-03-17 17:14:04 +09:00
parent 5adc675862
commit d0e61e5b4d

View File

@ -28,25 +28,25 @@ namespace osu.Game.Screens.Edit.Setup
}, },
artistTextBox = new LabelledTextBox artistTextBox = new LabelledTextBox
{ {
PlaceholderText = "Artist", Label = "Artist",
Current = { Value = Beatmap.Metadata.Artist }, Current = { Value = Beatmap.Metadata.Artist },
TabbableContentContainer = this TabbableContentContainer = this
}, },
titleTextBox = new LabelledTextBox titleTextBox = new LabelledTextBox
{ {
PlaceholderText = "Title", Label = "Title",
Current = { Value = Beatmap.Metadata.Title }, Current = { Value = Beatmap.Metadata.Title },
TabbableContentContainer = this TabbableContentContainer = this
}, },
creatorTextBox = new LabelledTextBox creatorTextBox = new LabelledTextBox
{ {
PlaceholderText = "Creator", Label = "Creator",
Current = { Value = Beatmap.Metadata.AuthorString }, Current = { Value = Beatmap.Metadata.AuthorString },
TabbableContentContainer = this TabbableContentContainer = this
}, },
difficultyTextBox = new LabelledTextBox difficultyTextBox = new LabelledTextBox
{ {
PlaceholderText = "Difficulty Name", Label = "Difficulty Name",
Current = { Value = Beatmap.BeatmapInfo.Version }, Current = { Value = Beatmap.BeatmapInfo.Version },
TabbableContentContainer = this TabbableContentContainer = this
}, },