From 78e6d6910395197b942978ee965c9bc669912a3c Mon Sep 17 00:00:00 2001 From: Chris Forbes Date: Thu, 28 Jul 2011 22:31:30 +1200 Subject: [PATCH] fix #1064; always show an arrow while dragging a selection box --- OpenRA.Game/Widgets/WorldInteractionControllerWidget.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/OpenRA.Game/Widgets/WorldInteractionControllerWidget.cs b/OpenRA.Game/Widgets/WorldInteractionControllerWidget.cs index 9fb98c7780..13f4b1dc63 100644 --- a/OpenRA.Game/Widgets/WorldInteractionControllerWidget.cs +++ b/OpenRA.Game/Widgets/WorldInteractionControllerWidget.cs @@ -108,6 +108,9 @@ namespace OpenRA.Widgets { return Sync.CheckSyncUnchanged( world, () => { + if (SelectionBox != null) + return null; /* always show an arrow while selecting */ + var mi = new MouseInput { Location = pos,