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

Change access of beatmap to use working for consistency in file

This commit is contained in:
Dean Herbert 2021-01-07 19:11:51 +09:00
parent 42643fbaf6
commit 77b55212a3

View File

@ -73,7 +73,7 @@ namespace osu.Game.Screens.Edit.Setup
audioTrackTextBox = new FileChooserLabelledTextBox
{
Label = "Audio Track",
Current = { Value = Beatmap.Metadata.AudioFile ?? "Click to select a track" },
Current = { Value = working.Value.Metadata.AudioFile ?? "Click to select a track" },
Target = audioTrackFileChooserContainer,
TabbableContentContainer = this
},