1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-20 05:19:55 +08:00

Revert changes to ScrenTestScene

This commit is contained in:
Dean Herbert
2020-03-11 15:52:18 +09:00
Unverified
parent 2b33594400
commit 401429feec
+3 -2
View File
@@ -38,11 +38,12 @@ namespace osu.Game.Tests.Visual
private void addExitAllScreensStep()
{
AddStep("exit all screens", () =>
AddUntilStep("exit all screens", () =>
{
if (Stack.CurrentScreen == null) return;
if (Stack.CurrentScreen == null) return true;
Stack.Exit();
return false;
});
}
}