Skip to content

Commit

Permalink
#677 fix color print
Browse files Browse the repository at this point in the history
  • Loading branch information
supermerill committed Nov 17, 2020
1 parent f5427e9 commit 1059e2c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/slic3r/GUI/Plater.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit 1059e2c

Please sign in to comment.