mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-05-20 03:43:52 +00:00
capitalize support names in the UI for consistency (#8089)
Capitilize support labels for UI consistency
This commit is contained in:
@@ -4406,17 +4406,17 @@ void PrintConfigDef::init_fff_params()
|
|||||||
def = this->add("support_type", coEnum);
|
def = this->add("support_type", coEnum);
|
||||||
def->label = L("Type");
|
def->label = L("Type");
|
||||||
def->category = L("Support");
|
def->category = L("Support");
|
||||||
def->tooltip = L("normal(auto) and tree(auto) is used to generate support automatically. "
|
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");
|
"If Normal (manual) or Tree (manual) is selected, only support enforcers are generated");
|
||||||
def->enum_keys_map = &ConfigOptionEnum<SupportType>::get_enum_values();
|
def->enum_keys_map = &ConfigOptionEnum<SupportType>::get_enum_values();
|
||||||
def->enum_values.push_back("normal(auto)");
|
def->enum_values.push_back("normal(auto)");
|
||||||
def->enum_values.push_back("tree(auto)");
|
def->enum_values.push_back("tree(auto)");
|
||||||
def->enum_values.push_back("normal(manual)");
|
def->enum_values.push_back("normal(manual)");
|
||||||
def->enum_values.push_back("tree(manual)");
|
def->enum_values.push_back("tree(manual)");
|
||||||
def->enum_labels.push_back(L("normal(auto)"));
|
def->enum_labels.push_back(L("Normal (auto)"));
|
||||||
def->enum_labels.push_back(L("tree(auto)"));
|
def->enum_labels.push_back(L("Tree (auto)"));
|
||||||
def->enum_labels.push_back(L("normal(manual)"));
|
def->enum_labels.push_back(L("Normal (manual)"));
|
||||||
def->enum_labels.push_back(L("tree(manual)"));
|
def->enum_labels.push_back(L("Tree (manual)"));
|
||||||
def->mode = comSimple;
|
def->mode = comSimple;
|
||||||
def->set_default_value(new ConfigOptionEnum<SupportType>(stNormalAuto));
|
def->set_default_value(new ConfigOptionEnum<SupportType>(stNormalAuto));
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user