Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/supermerill/SuperSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsupermerill <merill@free.fr>2020-11-17 22:43:49 +0300
committersupermerill <merill@free.fr>2020-11-17 22:43:49 +0300
commit1059e2ce7fbb7928b2aa39519dbb60cf1fcb5b44 (patch)
treee8fd650286f50fd766d97ead1d61c5a44007e48d
parentf5427e9df81c1ba9785258fa21d1952fd10f47ac (diff)
#677 fix color print2.3.55.1
-rw-r--r--src/slic3r/GUI/Plater.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/slic3r/GUI/Plater.cpp b/src/slic3r/GUI/Plater.cpp
index c57c5982c..d79155cd5 100644
--- a/src/slic3r/GUI/Plater.cpp
+++ b/src/slic3r/GUI/Plater.cpp
@@ -5708,7 +5708,7 @@ std::vector<std::string> Plater::get_colors_for_color_print() const
for (const CustomGCode::Item& code : p->model.custom_gcode_per_print_z.gcodes)
if (code.type == CustomGCode::ColorChange)
- colors.emplace_back(code.extra);
+ colors.emplace_back(code.color);
return colors;
}