From e7ac37715f0d1ca9f16f271558811ccd2ee187f8 Mon Sep 17 00:00:00 2001 From: Dean Herbert Date: Fri, 21 Feb 2020 16:31:16 +0900 Subject: [PATCH] Don't handle non-positional input --- osu.Game/Graphics/UserInterface/LoadingLayer.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/osu.Game/Graphics/UserInterface/LoadingLayer.cs b/osu.Game/Graphics/UserInterface/LoadingLayer.cs index 4fdc95f483..25a62acaba 100644 --- a/osu.Game/Graphics/UserInterface/LoadingLayer.cs +++ b/osu.Game/Graphics/UserInterface/LoadingLayer.cs @@ -35,6 +35,8 @@ namespace osu.Game.Graphics.UserInterface MainContents.RelativeSizeAxes = Axes.None; } + public override bool HandleNonPositionalInput => false; + protected override bool Handle(UIEvent e) { switch (e)