Fix of "About" screen still shows 2020 at the copyright notice ()

This commit is contained in:
Vojtech Bubnik 2021-09-27 10:07:29 +02:00
parent 07e7e11590
commit 43470af0c6
5 changed files with 6 additions and 5 deletions
src/libslic3r

View file

@ -784,7 +784,8 @@ void GCode::do_export(Print* print, const char* path, GCodeProcessor::Result* re
}
BOOST_LOG_TRIVIAL(debug) << "Start processing gcode, " << log_memory_info();
m_processor.finalize();
// Post-process the G-code to update time stamps.
m_processor.finalize(true);
// DoExport::update_print_estimated_times_stats(m_processor, print->m_print_statistics);
DoExport::update_print_estimated_stats(m_processor, m_writer.extruders(), print->m_print_statistics);
if (result != nullptr) {