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.
This commit is contained in:
Ashley Newson
2025-05-31 00:15:33 +01:00
committed by Gustas Kažukauskas
parent aae2ec109b
commit c6ed381085

View File

@@ -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);
};
}