mirror of
https://github.com/osukey/osukey.git
synced 2025-07-02 00:40:09 +09:00
Remove EditSelected in favor in inlining beatmapNoDebounce in Edit
This commit is contained in:
@ -223,14 +223,12 @@ namespace osu.Game.Screens.Select
|
||||
Carousel.LoadBeatmapSetsFromManager(this.beatmaps);
|
||||
}
|
||||
|
||||
public void Edit(BeatmapInfo beatmap)
|
||||
public void Edit(BeatmapInfo beatmap = null)
|
||||
{
|
||||
Beatmap.Value = beatmaps.GetWorkingBeatmap(beatmap);
|
||||
Beatmap.Value = beatmaps.GetWorkingBeatmap(beatmap ?? beatmapNoDebounce);
|
||||
Push(new Editor());
|
||||
}
|
||||
|
||||
protected void EditSelected() => Edit(beatmapNoDebounce);
|
||||
|
||||
/// <summary>
|
||||
/// Call to make a selection and perform the default action for this SongSelect.
|
||||
/// </summary>
|
||||
|
Reference in New Issue
Block a user