diff --git a/OpenRa.Game/MainWindow.cs b/OpenRa.Game/MainWindow.cs index 6de41f5c97..490ed037b7 100755 --- a/OpenRa.Game/MainWindow.cs +++ b/OpenRa.Game/MainWindow.cs @@ -104,7 +104,7 @@ namespace OpenRa.Game { base.OnMouseMove(e); - if (e.Button == MouseButtons.Middle) + if (e.Button == MouseButtons.Middle || e.Button == (MouseButtons.Left | MouseButtons.Right)) { int2 p = new int2(e.Location); Game.viewport.Scroll(lastPos - p);