1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-13 19:43:22 +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;
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:
// always show during replay as we want the seek bar to be visible.
ShowHud.Value = replayLoaded.Value || IsBreakTime.Value;
@ -284,10 +279,6 @@ namespace osu.Game.Screens.Play
break;
case HUDVisibilityMode.HideDuringGameplay:
configVisibilityMode.Value = HUDVisibilityMode.HideDuringBreaks;
break;
case HUDVisibilityMode.HideDuringBreaks:
configVisibilityMode.Value = HUDVisibilityMode.Always;
break;