From dffb602ed4b10d3e4c703cc3af281ea7537ec3d4 Mon Sep 17 00:00:00 2001 From: Oliver Brakmann Date: Sat, 27 Aug 2016 13:56:09 +0200 Subject: [PATCH] Show scroll cursor when standard-scrolling using RMB --- OpenRA.Mods.Common/Widgets/ViewportControllerWidget.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenRA.Mods.Common/Widgets/ViewportControllerWidget.cs b/OpenRA.Mods.Common/Widgets/ViewportControllerWidget.cs index b9424f0dfc..7eb3aa5e59 100644 --- a/OpenRA.Mods.Common/Widgets/ViewportControllerWidget.cs +++ b/OpenRA.Mods.Common/Widgets/ViewportControllerWidget.cs @@ -215,7 +215,7 @@ namespace OpenRA.Mods.Common.Widgets var blockedDirections = worldRenderer.Viewport.GetBlockedDirections(); - if (IsJoystickScrolling) + if (IsJoystickScrolling || isStandardScrolling) { foreach (var dir in JoystickCursors) if (blockedDirections.Includes(dir.Key))