1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-14 02:22:56 +08:00

Commit missing pieces

This commit is contained in:
Dean Herbert 2020-10-30 13:53:51 +09:00
parent c72017a7db
commit b4eda65383

View File

@ -223,11 +223,6 @@ namespace osu.Game.Screens.Play
ShowHud.Value = false; ShowHud.Value = false;
break; break;
case HUDVisibilityMode.HideDuringBreaks:
// always show during replay as we want the seek bar to be visible.
ShowHud.Value = replayLoaded.Value || !IsBreakTime.Value;
break;
case HUDVisibilityMode.HideDuringGameplay: case HUDVisibilityMode.HideDuringGameplay:
// always show during replay as we want the seek bar to be visible. // always show during replay as we want the seek bar to be visible.
ShowHud.Value = replayLoaded.Value || IsBreakTime.Value; ShowHud.Value = replayLoaded.Value || IsBreakTime.Value;
@ -284,10 +279,6 @@ namespace osu.Game.Screens.Play
break; break;
case HUDVisibilityMode.HideDuringGameplay: case HUDVisibilityMode.HideDuringGameplay:
configVisibilityMode.Value = HUDVisibilityMode.HideDuringBreaks;
break;
case HUDVisibilityMode.HideDuringBreaks:
configVisibilityMode.Value = HUDVisibilityMode.Always; configVisibilityMode.Value = HUDVisibilityMode.Always;
break; break;