Add auto-locking to design defaults.

This commit is contained in:
Ottermandias 2025-08-08 15:36:47 +02:00
parent c25f0f72db
commit 0f98fac157
3 changed files with 6 additions and 0 deletions

View file

@ -113,6 +113,8 @@ public class SettingsTab(
if (!ImUtf8.CollapsingHeader("Design Defaults"))
return;
Checkbox("Locked Designs"u8, "Newly created designs will be locked to prevent unintended changes."u8,
config.DefaultDesignSettings.Locked, v => config.DefaultDesignSettings.Locked = v);
Checkbox("Show in Quick Design Bar"u8, "Newly created designs will be shown in the quick design bar by default."u8,
config.DefaultDesignSettings.ShowQuickDesignBar, v => config.DefaultDesignSettings.ShowQuickDesignBar = v);
Checkbox("Reset Advanced Dyes"u8, "Newly created designs will be configured to reset advanced dyes on application by default."u8,