From 2935f87e7082bd603c9a09aecda6ba51628a184b Mon Sep 17 00:00:00 2001 From: smoogipoo Date: Wed, 14 Apr 2021 18:29:34 +0900 Subject: [PATCH] Fix IsPaused not being bound --- osu.Game/Screens/Play/GameplayClockContainer.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/osu.Game/Screens/Play/GameplayClockContainer.cs b/osu.Game/Screens/Play/GameplayClockContainer.cs index 163ed9444f..a97a87d73f 100644 --- a/osu.Game/Screens/Play/GameplayClockContainer.cs +++ b/osu.Game/Screens/Play/GameplayClockContainer.cs @@ -50,6 +50,7 @@ namespace osu.Game.Screens.Play var dependencies = new DependencyContainer(base.CreateChildDependencies(parent)); dependencies.CacheAs(GameplayClock = CreateGameplayClock(AdjustableClock)); + GameplayClock.IsPaused.BindTo(IsPaused); return dependencies; }