1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-21 03:02:54 +08:00

Fix back-to-front exit blocking conditionals

This commit is contained in:
Dean Herbert 2024-07-10 20:00:34 +09:00
parent 6cee0210c3
commit b6741ee4ea
No known key found for this signature in database

View File

@ -156,12 +156,12 @@ namespace osu.Game.Screens.Edit
public override bool OnExiting(ScreenExitEvent e)
{
if (!fileMountOperation.IsCompleted)
return false;
return true;
if (EditOperation != null)
{
finish();
return false;
return true;
}
return base.OnExiting(e);