mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-11 08:47:52 -06:00
Set "wipe_into_infill" and "wipe_into_objects" options to the "Wipe options" category instead of "Extruders"
This commit is contained in:
parent
3b21c64c2e
commit
05325e4f2e
2 changed files with 5 additions and 3 deletions
|
@ -2187,7 +2187,7 @@ void PrintConfigDef::init_fff_params()
|
||||||
def->set_default_value(new ConfigOptionFloat(0.));
|
def->set_default_value(new ConfigOptionFloat(0.));
|
||||||
|
|
||||||
def = this->add("wipe_into_infill", coBool);
|
def = this->add("wipe_into_infill", coBool);
|
||||||
def->category = L("Extruders");
|
def->category = L("Wipe options");
|
||||||
def->label = L("Wipe into this object's infill");
|
def->label = L("Wipe into this object's infill");
|
||||||
def->tooltip = L("Purging after toolchange will done inside this object's infills. "
|
def->tooltip = L("Purging after toolchange will done inside this object's infills. "
|
||||||
"This lowers the amount of waste but may result in longer print time "
|
"This lowers the amount of waste but may result in longer print time "
|
||||||
|
@ -2195,7 +2195,7 @@ void PrintConfigDef::init_fff_params()
|
||||||
def->set_default_value(new ConfigOptionBool(false));
|
def->set_default_value(new ConfigOptionBool(false));
|
||||||
|
|
||||||
def = this->add("wipe_into_objects", coBool);
|
def = this->add("wipe_into_objects", coBool);
|
||||||
def->category = L("Extruders");
|
def->category = L("Wipe options");
|
||||||
def->label = L("Wipe into this object");
|
def->label = L("Wipe into this object");
|
||||||
def->tooltip = L("Object will be used to purge the nozzle after a toolchange to save material "
|
def->tooltip = L("Object will be used to purge the nozzle after a toolchange to save material "
|
||||||
"that would otherwise end up in the wipe tower and decrease print time. "
|
"that would otherwise end up in the wipe tower and decrease print time. "
|
||||||
|
|
|
@ -32,7 +32,7 @@ SettingsBundle FREQ_SETTINGS_BUNDLE_FFF =
|
||||||
{ L("Support material") , { "support_material", "support_material_auto", "support_material_threshold",
|
{ L("Support material") , { "support_material", "support_material_auto", "support_material_threshold",
|
||||||
"support_material_pattern", "support_material_buildplate_only",
|
"support_material_pattern", "support_material_buildplate_only",
|
||||||
"support_material_spacing" } },
|
"support_material_spacing" } },
|
||||||
{ L("Extruders") , { "wipe_into_infill", "wipe_into_objects" } }
|
{ L("Wipe options") , { "wipe_into_infill", "wipe_into_objects" } }
|
||||||
};
|
};
|
||||||
|
|
||||||
// pt_SLA
|
// pt_SLA
|
||||||
|
@ -87,6 +87,7 @@ ObjectList::ObjectList(wxWindow* parent) :
|
||||||
CATEGORY_ICON[L("Speed")] = create_scaled_bitmap(nullptr, "time");
|
CATEGORY_ICON[L("Speed")] = create_scaled_bitmap(nullptr, "time");
|
||||||
CATEGORY_ICON[L("Extruders")] = create_scaled_bitmap(nullptr, "funnel");
|
CATEGORY_ICON[L("Extruders")] = create_scaled_bitmap(nullptr, "funnel");
|
||||||
CATEGORY_ICON[L("Extrusion Width")] = create_scaled_bitmap(nullptr, "funnel");
|
CATEGORY_ICON[L("Extrusion Width")] = create_scaled_bitmap(nullptr, "funnel");
|
||||||
|
CATEGORY_ICON[L("Wipe options")] = create_scaled_bitmap(nullptr, "funnel");
|
||||||
// CATEGORY_ICON[L("Skirt and brim")] = create_scaled_bitmap(nullptr, "skirt+brim");
|
// CATEGORY_ICON[L("Skirt and brim")] = create_scaled_bitmap(nullptr, "skirt+brim");
|
||||||
// CATEGORY_ICON[L("Speed > Acceleration")] = create_scaled_bitmap(nullptr, "time");
|
// CATEGORY_ICON[L("Speed > Acceleration")] = create_scaled_bitmap(nullptr, "time");
|
||||||
CATEGORY_ICON[L("Advanced")] = create_scaled_bitmap(nullptr, "wrench");
|
CATEGORY_ICON[L("Advanced")] = create_scaled_bitmap(nullptr, "wrench");
|
||||||
|
@ -560,6 +561,7 @@ void ObjectList::msw_rescale_icons()
|
||||||
CATEGORY_ICON[L("Speed")] = create_scaled_bitmap(nullptr, "time");
|
CATEGORY_ICON[L("Speed")] = create_scaled_bitmap(nullptr, "time");
|
||||||
CATEGORY_ICON[L("Extruders")] = create_scaled_bitmap(nullptr, "funnel");
|
CATEGORY_ICON[L("Extruders")] = create_scaled_bitmap(nullptr, "funnel");
|
||||||
CATEGORY_ICON[L("Extrusion Width")] = create_scaled_bitmap(nullptr, "funnel");
|
CATEGORY_ICON[L("Extrusion Width")] = create_scaled_bitmap(nullptr, "funnel");
|
||||||
|
CATEGORY_ICON[L("Wipe options")] = create_scaled_bitmap(nullptr, "funnel");
|
||||||
// CATEGORY_ICON[L("Skirt and brim")] = create_scaled_bitmap(nullptr, "skirt+brim");
|
// CATEGORY_ICON[L("Skirt and brim")] = create_scaled_bitmap(nullptr, "skirt+brim");
|
||||||
// CATEGORY_ICON[L("Speed > Acceleration")] = create_scaled_bitmap(nullptr, "time");
|
// CATEGORY_ICON[L("Speed > Acceleration")] = create_scaled_bitmap(nullptr, "time");
|
||||||
CATEGORY_ICON[L("Advanced")] = create_scaled_bitmap(nullptr, "wrench");
|
CATEGORY_ICON[L("Advanced")] = create_scaled_bitmap(nullptr, "wrench");
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue