From 1c43b2902c2d506b03e7f40693b86548adcbe357 Mon Sep 17 00:00:00 2001 From: SoftFever Date: Mon, 7 Oct 2024 18:10:14 +0800 Subject: [PATCH] fix a build error --- src/OrcaSlicer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/OrcaSlicer.cpp b/src/OrcaSlicer.cpp index c0100b3b2f..dc140e2629 100644 --- a/src/OrcaSlicer.cpp +++ b/src/OrcaSlicer.cpp @@ -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(opt_key)->value; if (opt.x() <= 0 || opt.y() <= 0 || opt.z() <= 0) {