GCodeProcessor -> Fixed export of estimated time to gcode filename

This commit is contained in:
enricoturri1966 2020-08-07 15:30:08 +02:00
parent bcd998f9f1
commit 64001c0fe5
6 changed files with 40 additions and 6 deletions
src/libslic3r/GCode

View file

@ -317,6 +317,9 @@ namespace Slic3r {
void apply_config(const PrintConfig& config);
void apply_config(const DynamicPrintConfig& config);
void enable_stealth_time_estimator(bool enabled);
bool is_stealth_time_estimator_enabled() const {
return m_time_processor.machines[static_cast<size_t>(ETimeMode::Stealth)].enabled;
}
void enable_producers(bool enabled) { m_producers_enabled = enabled; }
void reset();