Skip to content

Commit

Permalink
fix a build error
Browse files Browse the repository at this point in the history
  • Loading branch information
SoftFever committed Oct 7, 2024
1 parent 89d04ab commit 1c43b29
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/OrcaSlicer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3584,7 +3584,7 @@ int CLI::run(int argc, char **argv)
for (auto &model : m_models)
for (auto &o : model.objects)
// this affects volumes:
o->scale(ratio));
o->scale(ratio);
} else if (opt_key == "scale_to_fit") {
const Vec3d &opt = m_config.opt<ConfigOptionPoint3>(opt_key)->value;
if (opt.x() <= 0 || opt.y() <= 0 || opt.z() <= 0) {
Expand Down

0 comments on commit 1c43b29

Please sign in to comment.