diff --git a/OpenRA.Game/Widgets/BackgroundWidget.cs b/OpenRA.Game/Widgets/BackgroundWidget.cs index 7bb94f2ee4..11a674b375 100644 --- a/OpenRA.Game/Widgets/BackgroundWidget.cs +++ b/OpenRA.Game/Widgets/BackgroundWidget.cs @@ -30,7 +30,7 @@ namespace OpenRA.Widgets public override bool HandleMouseInput(MouseInput mi) { - if (ClickThrough || !Bounds.Contains(mi.Location)) + if (ClickThrough || !RenderBounds.Contains(mi.Location)) return false; if (!Draggable || moving && (!TakeMouseFocus(mi) || mi.Button != MouseButton.Left))