mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-06 22:47:32 -06:00
capitalize support names in the UI for consistency (#8089)
Capitilize support labels for UI consistency
This commit is contained in:
parent
5ec8f51bd4
commit
105a8444e9
1 changed files with 6 additions and 6 deletions
|
@ -4406,17 +4406,17 @@ void PrintConfigDef::init_fff_params()
|
|||
def = this->add("support_type", coEnum);
|
||||
def->label = L("Type");
|
||||
def->category = L("Support");
|
||||
def->tooltip = L("normal(auto) and tree(auto) is used to generate support automatically. "
|
||||
"If normal(manual) or tree(manual) is selected, only support enforcers are generated");
|
||||
def->tooltip = L("Normal (auto) and Tree (auto) is used to generate support automatically. "
|
||||
"If Normal (manual) or Tree (manual) is selected, only support enforcers are generated");
|
||||
def->enum_keys_map = &ConfigOptionEnum<SupportType>::get_enum_values();
|
||||
def->enum_values.push_back("normal(auto)");
|
||||
def->enum_values.push_back("tree(auto)");
|
||||
def->enum_values.push_back("normal(manual)");
|
||||
def->enum_values.push_back("tree(manual)");
|
||||
def->enum_labels.push_back(L("normal(auto)"));
|
||||
def->enum_labels.push_back(L("tree(auto)"));
|
||||
def->enum_labels.push_back(L("normal(manual)"));
|
||||
def->enum_labels.push_back(L("tree(manual)"));
|
||||
def->enum_labels.push_back(L("Normal (auto)"));
|
||||
def->enum_labels.push_back(L("Tree (auto)"));
|
||||
def->enum_labels.push_back(L("Normal (manual)"));
|
||||
def->enum_labels.push_back(L("Tree (manual)"));
|
||||
def->mode = comSimple;
|
||||
def->set_default_value(new ConfigOptionEnum<SupportType>(stNormalAuto));
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue