From 70698d53ca0b97c93985b22ac0b0c00a1e2944a9 Mon Sep 17 00:00:00 2001 From: Joseph Lenox Date: Sat, 20 Mar 2021 22:34:34 -0500 Subject: [PATCH] Silence a compiler warning because there are mixed tabs and spaces. --- tests/fff_print/test_data.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/fff_print/test_data.cpp b/tests/fff_print/test_data.cpp index f472aa024..e09976571 100644 --- a/tests/fff_print/test_data.cpp +++ b/tests/fff_print/test_data.cpp @@ -159,8 +159,9 @@ void init_print(std::vector &&meshes, Slic3r::Print &print, Slic3r DynamicPrintConfig config = DynamicPrintConfig::full_print_config(); config.apply(config_in); - if (verbose_gcode()) + if (verbose_gcode()) { config.set_key_value("gcode_comments", new ConfigOptionBool(true)); + } for (const TriangleMesh &t : meshes) { ModelObject *object = model.add_object();