GCode Viewer - Fixed crash when switching to tool view with gcode generated by slicers other than PrusaSlicer

This commit is contained in:
Enrico Turri 2020-11-20 11:50:25 +01:00
parent d9f845d0b3
commit 148f4fe766

View file

@ -817,6 +817,10 @@ void GCodeProcessor::process_file(const std::string& filename, bool apply_postpr
update_estimated_times_stats();
// ensure at least one (default) color is defined
if (m_result.extruder_colors.empty())
m_result.extruder_colors.push_back("#FF8000");
// post-process to add M73 lines into the gcode
if (apply_postprocess)
m_time_processor.post_process(filename);