Skip to content

Commit

Permalink
Applied clang-format.
Browse files Browse the repository at this point in the history
  • Loading branch information
saumyaj3 authored and github-actions[bot] committed Feb 27, 2024
1 parent 22e2e51 commit 4788e09
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/FffGcodeWriter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -141,8 +141,8 @@ void FffGcodeWriter::writeGCode(SliceDataStorage& storage, TimeKeeper& time_keep
}
}
const auto extruder_settings = Application::getInstance().current_slice_->scene.extruders[gcode.getExtruderNr()].settings_;
//in case the prime blob is enabled the brim already starts from the closest start position which is blob location
if (!extruder_settings.get<bool>("prime_blob_enable"))
// in case the prime blob is enabled the brim already starts from the closest start position which is blob location
if (! extruder_settings.get<bool>("prime_blob_enable"))
{
// Setting first travel move of the first extruder to the machine start position
Point3LL p(extruder_settings.get<coord_t>("machine_extruder_start_pos_x"), extruder_settings.get<coord_t>("machine_extruder_start_pos_y"), gcode.getPositionZ());
Expand Down

0 comments on commit 4788e09

Please sign in to comment.