From f202aee2a910005c400f932e34f6b4f85151b6dd Mon Sep 17 00:00:00 2001 From: Dean Herbert Date: Sat, 29 Apr 2017 16:59:23 +0900 Subject: [PATCH] Fix input not being propagated to the playfield when outside its bounds. --- osu.Game/Rulesets/UI/Playfield.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/osu.Game/Rulesets/UI/Playfield.cs b/osu.Game/Rulesets/UI/Playfield.cs index 44d15e42c4..0586c0385a 100644 --- a/osu.Game/Rulesets/UI/Playfield.cs +++ b/osu.Game/Rulesets/UI/Playfield.cs @@ -50,6 +50,7 @@ namespace osu.Game.Rulesets.UI { content = new Container { + AlwaysReceiveInput = true, RelativeSizeAxes = Axes.Both, } }