mirror of
https://github.com/Ottermandias/Glamourer.git
synced 2025-12-13 12:14:18 +01:00
Fix name of customize parameters.
This commit is contained in:
parent
8d4f71122c
commit
d57d40bd59
1 changed files with 1 additions and 1 deletions
|
|
@ -313,7 +313,7 @@ public class DesignPanel(
|
||||||
foreach (var flag in CustomizeParameterExtensions.AllFlags)
|
foreach (var flag in CustomizeParameterExtensions.AllFlags)
|
||||||
{
|
{
|
||||||
var apply = bigChange ? ((CustomizeParameterFlag)flags).HasFlag(flag) : _selector.Selected!.DoApplyParameter(flag);
|
var apply = bigChange ? ((CustomizeParameterFlag)flags).HasFlag(flag) : _selector.Selected!.DoApplyParameter(flag);
|
||||||
if (ImGui.Checkbox($"Apply {flag}", ref apply) || bigChange)
|
if (ImGui.Checkbox($"Apply {flag.ToName()}", ref apply) || bigChange)
|
||||||
_manager.ChangeApplyParameter(_selector.Selected!, flag, apply);
|
_manager.ChangeApplyParameter(_selector.Selected!, flag, apply);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue