From 4548f7253d7ee9518748534e1a27d76e913597cc Mon Sep 17 00:00:00 2001 From: saumyaj3 Date: Thu, 22 Feb 2024 15:48:43 +0000 Subject: [PATCH] Applied clang-format. --- src/FffGcodeWriter.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/FffGcodeWriter.cpp b/src/FffGcodeWriter.cpp index a21081daec..c014d733f5 100644 --- a/src/FffGcodeWriter.cpp +++ b/src/FffGcodeWriter.cpp @@ -144,7 +144,8 @@ void FffGcodeWriter::writeGCode(SliceDataStorage& storage, TimeKeeper& time_keep // Setting first travel move of the first extruder to the machine start position const auto extruder_settings = Application::getInstance().current_slice_->scene.extruders[start_extruder_nr].settings_; Point3LL p(extruder_settings.get("machine_extruder_start_pos_x"), extruder_settings.get("machine_extruder_start_pos_y"), gcode.getPositionZ()); - gcode.writeTravel(p, Application::getInstance().current_slice_->scene.extruders[gcode.getExtruderNr()].settings_.get("speed_travel"));; + gcode.writeTravel(p, Application::getInstance().current_slice_->scene.extruders[gcode.getExtruderNr()].settings_.get("speed_travel")); + ; calculateExtruderOrderPerLayer(storage); calculatePrimeLayerPerExtruder(storage);