diff --git a/OpenRA.Mods.Common/Widgets/LabelWidget.cs b/OpenRA.Mods.Common/Widgets/LabelWidget.cs index 08ca83126e..1444b2dadb 100644 --- a/OpenRA.Mods.Common/Widgets/LabelWidget.cs +++ b/OpenRA.Mods.Common/Widgets/LabelWidget.cs @@ -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; } } }