From ebfe7fd01a668b68705838e1734c3758fcf4d48d Mon Sep 17 00:00:00 2001 From: sckunkle Date: Wed, 4 Mar 2020 13:15:03 -0600 Subject: [PATCH] Fix double space message. --- src/libslic3r/GCode.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libslic3r/GCode.cpp b/src/libslic3r/GCode.cpp index 87b0c4908..40518583f 100644 --- a/src/libslic3r/GCode.cpp +++ b/src/libslic3r/GCode.cpp @@ -638,7 +638,7 @@ std::vector GCode::collect_layers_to_print(const PrintObjec _(L("Object name")) + ": " + object.model_object()->name + "\n" + _(L("Print z")) + ": " + std::to_string(layers_to_print.back().print_z()) + "\n\n" + _(L("This is " "usually caused by negligibly small extrusions or by a faulty model. Try to repair " - " the model or change its orientation on the bed."))); + "the model or change its orientation on the bed."))); // Remember last layer with extrusions. last_extrusion_layer = &layers_to_print.back(); }