feat(ui): add ActiveColorScheme user setting
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Generated
+12
@@ -226,5 +226,17 @@ namespace OpenNest.Properties {
|
|||||||
this["CuttingParametersJson"] = value;
|
this["CuttingParametersJson"] = value;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[global::System.Configuration.UserScopedSettingAttribute()]
|
||||||
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
|
[global::System.Configuration.DefaultSettingValueAttribute("Classic")]
|
||||||
|
public string ActiveColorScheme {
|
||||||
|
get {
|
||||||
|
return ((string)(this["ActiveColorScheme"]));
|
||||||
|
}
|
||||||
|
set {
|
||||||
|
this["ActiveColorScheme"] = value;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -53,5 +53,8 @@
|
|||||||
<Setting Name="CuttingParametersJson" Type="System.String" Scope="User">
|
<Setting Name="CuttingParametersJson" Type="System.String" Scope="User">
|
||||||
<Value Profile="(Default)" />
|
<Value Profile="(Default)" />
|
||||||
</Setting>
|
</Setting>
|
||||||
|
<Setting Name="ActiveColorScheme" Type="System.String" Scope="User">
|
||||||
|
<Value Profile="(Default)">Classic</Value>
|
||||||
|
</Setting>
|
||||||
</Settings>
|
</Settings>
|
||||||
</SettingsFile>
|
</SettingsFile>
|
||||||
Reference in New Issue
Block a user