mirror of
https://github.com/osukey/osukey.git
synced 2025-08-03 14:46:38 +09:00
Merge branch 'master' into player_loader_input_toggles
This commit is contained in:
@ -25,8 +25,8 @@ namespace osu.Game.Screens.Play
|
||||
|
||||
private BeatmapMetadataDisplay info;
|
||||
|
||||
private bool showOverlays = true;
|
||||
public override bool ShowOverlaysOnEnter => showOverlays;
|
||||
private bool hideOverlays;
|
||||
protected override bool HideOverlaysOnEnter => hideOverlays;
|
||||
|
||||
private Task loadTask;
|
||||
|
||||
@ -36,7 +36,7 @@ namespace osu.Game.Screens.Play
|
||||
|
||||
player.RestartRequested = () =>
|
||||
{
|
||||
showOverlays = false;
|
||||
hideOverlays = true;
|
||||
ValidForResume = true;
|
||||
};
|
||||
}
|
||||
|
Reference in New Issue
Block a user