Fix Apply Dye checkbox tooltip.

This commit is contained in:
Ottermandias 2024-04-15 23:29:54 +02:00
parent efd51b0b5e
commit f949153292

View file

@ -579,7 +579,7 @@ public class EquipmentDrawer
private static void DrawApplyStain(in EquipDrawData data)
{
if (UiHelpers.DrawCheckbox($"##applyStain{data.Slot}", "Apply this item when applying the Design.", data.CurrentApplyStain,
if (UiHelpers.DrawCheckbox($"##applyStain{data.Slot}", "Apply this dye to the item when applying the Design.", data.CurrentApplyStain,
out var enabled,
data.Locked))
data.SetApplyStain(enabled);