mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-05-30 16:42:43 +00:00
Removed --g0
This commit is contained in:
@@ -183,7 +183,6 @@ Print::invalidate_state_by_config_options(const std::vector<t_config_option_key>
|
||||
|| *opt_key == "first_layer_bed_temperature"
|
||||
|| *opt_key == "first_layer_speed"
|
||||
|| *opt_key == "first_layer_temperature"
|
||||
|| *opt_key == "g0"
|
||||
|| *opt_key == "gcode_arcs"
|
||||
|| *opt_key == "gcode_comments"
|
||||
|| *opt_key == "gcode_flavor"
|
||||
|
||||
@@ -326,11 +326,6 @@ PrintConfigDef::build_def() {
|
||||
Options["first_layer_temperature"].min = 0;
|
||||
Options["first_layer_temperature"].max = 400;
|
||||
|
||||
Options["g0"].type = coBool;
|
||||
Options["g0"].label = "Use G0 for travel moves";
|
||||
Options["g0"].tooltip = "Only enable this if your firmware supports G0 properly (thus decouples all axes using their maximum speeds instead of synchronizing them). Travel moves and retractions will be combined in single commands, speeding them print up.";
|
||||
Options["g0"].cli = "g0!";
|
||||
|
||||
Options["gap_fill_speed"].type = coFloat;
|
||||
Options["gap_fill_speed"].label = "Gap fill";
|
||||
Options["gap_fill_speed"].category = "Speed";
|
||||
|
||||
@@ -388,7 +388,6 @@ class PrintConfig : public GCodeConfig
|
||||
ConfigOptionFloatOrPercent first_layer_extrusion_width;
|
||||
ConfigOptionFloatOrPercent first_layer_speed;
|
||||
ConfigOptionInts first_layer_temperature;
|
||||
ConfigOptionBool g0;
|
||||
ConfigOptionBool gcode_arcs;
|
||||
ConfigOptionFloat infill_acceleration;
|
||||
ConfigOptionBool infill_first;
|
||||
@@ -455,7 +454,6 @@ class PrintConfig : public GCodeConfig
|
||||
this->first_layer_speed.percent = true;
|
||||
this->first_layer_temperature.values.resize(1);
|
||||
this->first_layer_temperature.values[0] = 200;
|
||||
this->g0.value = false;
|
||||
this->gcode_arcs.value = false;
|
||||
this->infill_acceleration.value = 0;
|
||||
this->infill_first.value = false;
|
||||
@@ -518,7 +516,6 @@ class PrintConfig : public GCodeConfig
|
||||
if (opt_key == "first_layer_extrusion_width") return &this->first_layer_extrusion_width;
|
||||
if (opt_key == "first_layer_speed") return &this->first_layer_speed;
|
||||
if (opt_key == "first_layer_temperature") return &this->first_layer_temperature;
|
||||
if (opt_key == "g0") return &this->g0;
|
||||
if (opt_key == "gcode_arcs") return &this->gcode_arcs;
|
||||
if (opt_key == "infill_acceleration") return &this->infill_acceleration;
|
||||
if (opt_key == "infill_first") return &this->infill_first;
|
||||
|
||||
Reference in New Issue
Block a user