From 999f2d810caba2e15d720aebcfdc1e2e47fcdf8b Mon Sep 17 00:00:00 2001 From: jvyden Date: Sun, 18 Apr 2021 23:30:07 -0400 Subject: [PATCH] Fix accidentally removed code --- osu.Game.Tests/Visual/Components/TestSceneIdleTracker.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/osu.Game.Tests/Visual/Components/TestSceneIdleTracker.cs b/osu.Game.Tests/Visual/Components/TestSceneIdleTracker.cs index d888f6a01e..77eadc14be 100644 --- a/osu.Game.Tests/Visual/Components/TestSceneIdleTracker.cs +++ b/osu.Game.Tests/Visual/Components/TestSceneIdleTracker.cs @@ -173,6 +173,8 @@ namespace osu.Game.Tests.Visual.Components RelativeSizeAxes = Axes.Both, }, }; + + idleTracker.IsIdle.BindValueChanged(idle => box.Colour = idle.NewValue ? Color4.White : Color4.Black, true); } } }