1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-15 09:02:55 +08:00

add check if replay is loaded before allowseeking can be overwitten

This commit is contained in:
chrisny286 2019-01-23 02:12:40 +01:00
parent cabcfffdeb
commit f01ba17d1f

View File

@ -125,7 +125,7 @@ namespace osu.Game.Screens.Play
set set
{ {
if (allowSeeking == value) return; if (allowSeeking == value) return;
if (!replayLoaded) return;
allowSeeking = value; allowSeeking = value;
updateBarVisibility(); updateBarVisibility();
} }