1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 04:07:25 +08:00

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
{
PlaceholderText = "Artist",
Label = "Artist",
Current = { Value = Beatmap.Metadata.Artist },
TabbableContentContainer = this
},
titleTextBox = new LabelledTextBox
{
PlaceholderText = "Title",
Label = "Title",
Current = { Value = Beatmap.Metadata.Title },
TabbableContentContainer = this
},
creatorTextBox = new LabelledTextBox
{
PlaceholderText = "Creator",
Label = "Creator",
Current = { Value = Beatmap.Metadata.AuthorString },
TabbableContentContainer = this
},
difficultyTextBox = new LabelledTextBox
{
PlaceholderText = "Difficulty Name",
Label = "Difficulty Name",
Current = { Value = Beatmap.BeatmapInfo.Version },
TabbableContentContainer = this
},