Fixed warning
This commit is contained in:
parent
aa3231e2c5
commit
ff20ad1052
@ -3942,7 +3942,7 @@ void GCodeViewer::render_legend(float& legend_height)
|
||||
|
||||
std::vector<CustomGCode::Item> custom_gcode_per_print_z = wxGetApp().is_editor() ? wxGetApp().plater()->model().custom_gcode_per_print_z.gcodes : m_custom_gcode_per_print_z;
|
||||
std::vector<ColorRGBA> last_color(m_extruders_count);
|
||||
for (int i = 0; i < m_extruders_count; ++i) {
|
||||
for (size_t i = 0; i < m_extruders_count; ++i) {
|
||||
last_color[i] = m_tool_colors[i];
|
||||
}
|
||||
int last_extruder_id = 1;
|
||||
|
Loading…
Reference in New Issue
Block a user