From c6ed3810854ccc0219254cf88817b8858bafa8bd Mon Sep 17 00:00:00 2001 From: Ashley Newson Date: Sat, 31 May 2025 00:15:33 +0100 Subject: [PATCH] Remove empty Path Tiling Tool dropdown tooltips I'd accidentally copy-pasted the wrong item template in the original TilingPathToolLogic implementation. This change uses the normal tooltipless LABEL_DROPDOWN_TEMPLATE. --- OpenRA.Mods.Common/Widgets/Logic/Editor/TilingPathToolLogic.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenRA.Mods.Common/Widgets/Logic/Editor/TilingPathToolLogic.cs b/OpenRA.Mods.Common/Widgets/Logic/Editor/TilingPathToolLogic.cs index 2d75a380d2..4ae5f0dbf4 100644 --- a/OpenRA.Mods.Common/Widgets/Logic/Editor/TilingPathToolLogic.cs +++ b/OpenRA.Mods.Common/Widgets/Logic/Editor/TilingPathToolLogic.cs @@ -72,7 +72,7 @@ namespace OpenRA.Mods.Common.Widgets.Logic return item; } - dropDown.ShowDropDown("LABEL_DROPDOWN_WITH_TOOLTIP_TEMPLATE", choices.Length * 30, choices, SetupItem); + dropDown.ShowDropDown("LABEL_DROPDOWN_TEMPLATE", choices.Length * 30, choices, SetupItem); }; }