Fix display of customization names in application rules.

This commit is contained in:
Ottermandias 2023-11-15 18:37:54 +01:00
parent 053998e5e4
commit 2afa5734f7

View file

@ -244,7 +244,7 @@ public class DesignPanel
foreach (var index in CustomizationExtensions.All.Where(set.IsAvailable))
{
var apply = _selector.Selected!.DoApplyCustomize(index);
if (ImGui.Checkbox($"Apply {index.ToDefaultName()}", ref apply))
if (ImGui.Checkbox($"Apply {set.Option(index)}", ref apply))
_manager.ChangeApplyCustomize(_selector.Selected!, index, apply);
}
}