FIX: all plates stats data missing issue
jira: new Change-Id: I137a2b6d69ad08791f5a9a9788653621960dc63f
This commit is contained in:
parent
62a0ad5234
commit
2d6a75f557
|
@ -4290,7 +4290,7 @@ void GCodeViewer::render_all_plates_stats(const std::vector<const GCodeProcessor
|
|||
for (size_t extruder_id : plate_extruders) {
|
||||
extruder_id -= 1;
|
||||
if (plate_print_statistics.model_volumes_per_extruder.find(extruder_id) == plate_print_statistics.model_volumes_per_extruder.end())
|
||||
flushed_volume_of_extruders_all_plates[extruder_id] += 0;
|
||||
model_volume_of_extruders_all_plates[extruder_id] += 0;
|
||||
else {
|
||||
double model_volume = plate_print_statistics.model_volumes_per_extruder.at(extruder_id);
|
||||
model_volume_of_extruders_all_plates[extruder_id] += model_volume;
|
||||
|
|
Loading…
Reference in New Issue