mirror of
https://github.com/osukey/osukey.git
synced 2025-08-03 14:46:38 +09:00
Fix overlay activation mode being updated when player is not current screen.
This commit is contained in:
@ -363,6 +363,9 @@ namespace osu.Game.Screens.Play
|
||||
|
||||
private void updateOverlayActivationMode()
|
||||
{
|
||||
if (!this.IsCurrentScreen())
|
||||
return;
|
||||
|
||||
bool canTriggerOverlays = DrawableRuleset.IsPaused.Value || breakTracker.IsBreakTime.Value || !gameplayOverlaysDisabled.Value;
|
||||
|
||||
if (DrawableRuleset.HasReplayLoaded.Value || canTriggerOverlays)
|
||||
|
Reference in New Issue
Block a user