From 10f0c832702f701995a1d9fca2691cbb032a8d99 Mon Sep 17 00:00:00 2001 From: Oliver Brakmann Date: Fri, 20 Feb 2015 22:26:16 +0100 Subject: [PATCH] Prevent VqaPlayerWidget from eating the radar bin's mouse inputs --- OpenRA.Game/Widgets/VqaPlayerWidget.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenRA.Game/Widgets/VqaPlayerWidget.cs b/OpenRA.Game/Widgets/VqaPlayerWidget.cs index 3bb1c0c269..3afbbfe2b5 100644 --- a/OpenRA.Game/Widgets/VqaPlayerWidget.cs +++ b/OpenRA.Game/Widgets/VqaPlayerWidget.cs @@ -153,7 +153,7 @@ namespace OpenRA.Widgets public override bool HandleMouseInput(MouseInput mi) { - return RenderBounds.Contains(mi.Location); + return RenderBounds.Contains(mi.Location) && Skippable; } public void Play()