Don't change cursor when mousing over label widgets

Labels don't handle input so the cursor should not change over them.
This commit is contained in:
Ivaylo Draganov
2023-04-09 18:47:25 +03:00
committed by Gustas
parent 3ca2bb1d23
commit 96d023de87

View File

@@ -112,5 +112,7 @@ namespace OpenRA.Mods.Common.Widgets
}
public override Widget Clone() { return new LabelWidget(this); }
public override string GetCursor(int2 pos) { return null; }
}
}