Fix not showing scroll cursor during standard-scrolling
... when edge scrolling was also disabled.
This commit is contained in:
@@ -210,7 +210,7 @@ namespace OpenRA.Mods.Common.Widgets
|
||||
|
||||
public override string GetCursor(int2 pos)
|
||||
{
|
||||
if (!IsJoystickScrolling &&
|
||||
if (!(IsJoystickScrolling || isStandardScrolling) &&
|
||||
(!Game.Settings.Game.ViewportEdgeScroll || Ui.MouseOverWidget != this))
|
||||
return null;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user