mirror of
https://github.com/ppy/osu
synced 2024-12-15 19:36:34 +00:00
Made the pause overlay be at -1 depth so it renders on top of everything(used to allow circles to draw on top)
This commit is contained in:
parent
f35974021a
commit
81de5a2097
@ -110,7 +110,8 @@ namespace osu.Game.Overlays.Pause
|
||||
public PauseOverlay()
|
||||
{
|
||||
RelativeSizeAxes = Axes.Both;
|
||||
AutoSizeAxes = Axes.Both;
|
||||
AutoSizeAxes = Axes.Both;
|
||||
Depth = -1;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -177,7 +177,6 @@ namespace osu.Game.Screens.Play
|
||||
private void onPause()
|
||||
{
|
||||
scoreOverlay.KeyCounter.IsCounting = false;
|
||||
|
||||
sourceClock.Stop();
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user