1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-15 19:45:43 +08:00

Apply suggested changes

This commit is contained in:
smoogipoo 2017-12-02 20:31:10 +09:00
parent c14d68e685
commit cd20d6df16
3 changed files with 1 additions and 4 deletions

View File

@ -154,7 +154,6 @@ namespace osu.Game.Screens.Edit
}
currentScreen.Beatmap.BindTo(Beatmap);
currentScreen.ExitRequested = Exit;
screenContainer.Add(currentScreen);
}

View File

@ -22,7 +22,7 @@ namespace osu.Game.Screens.Edit.Screens.Compose.RadioButtons
items = value;
buttonContainer.Clear();
value.ForEach(addButton);
items.ForEach(addButton);
}
}

View File

@ -11,8 +11,6 @@ namespace osu.Game.Screens.Edit.Screens
{
public class EditorScreen : Container
{
public Action ExitRequested;
public readonly Bindable<WorkingBeatmap> Beatmap = new Bindable<WorkingBeatmap>();
protected override Container<Drawable> Content => content;