mirror of
https://github.com/osukey/osukey.git
synced 2025-08-02 14:17:06 +09:00
Apply newline additions
This commit is contained in:
@ -70,6 +70,7 @@ namespace osu.Game.Screens.Edit
|
||||
PlaybackControl playback;
|
||||
|
||||
var fileMenuItems = new List<MenuItem>();
|
||||
|
||||
if (RuntimeInfo.IsDesktop)
|
||||
{
|
||||
fileMenuItems.Add(new EditorMenuItem("Export", MenuItemType.Standard, exportBeatmap));
|
||||
@ -173,6 +174,7 @@ namespace osu.Game.Screens.Edit
|
||||
case Key.Left:
|
||||
seek(e, -1);
|
||||
return true;
|
||||
|
||||
case Key.Right:
|
||||
seek(e, 1);
|
||||
return true;
|
||||
@ -218,6 +220,7 @@ namespace osu.Game.Screens.Edit
|
||||
public override bool OnExiting(IScreen next)
|
||||
{
|
||||
Background.FadeColour(Color4.White, 500);
|
||||
|
||||
if (Beatmap.Value.Track != null)
|
||||
{
|
||||
Beatmap.Value.Track.Tempo.Value = 1;
|
||||
@ -238,9 +241,11 @@ namespace osu.Game.Screens.Edit
|
||||
case EditorScreenMode.Compose:
|
||||
currentScreen = new ComposeScreen();
|
||||
break;
|
||||
|
||||
case EditorScreenMode.Design:
|
||||
currentScreen = new DesignScreen();
|
||||
break;
|
||||
|
||||
default:
|
||||
currentScreen = new EditorScreen();
|
||||
break;
|
||||
|
Reference in New Issue
Block a user