diff --git a/OpenRA.Game/Widgets/WorldInteractionControllerWidget.cs b/OpenRA.Game/Widgets/WorldInteractionControllerWidget.cs index 13f4b1dc63..fc48e6a0d5 100644 --- a/OpenRA.Game/Widgets/WorldInteractionControllerWidget.cs +++ b/OpenRA.Game/Widgets/WorldInteractionControllerWidget.cs @@ -80,7 +80,8 @@ namespace OpenRA.Widgets dragStart = dragEnd = xy; if (mi.Button == MouseButton.Right && mi.Event == MouseInputEvent.Down) - ApplyOrders(world, xy, mi); + if (SelectionBox == null) /* don't issue orders while selecting */ + ApplyOrders(world, xy, mi); return true; }