Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/supermerill/SuperSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'xs/src/libslic3r/GCode.hpp')
-rw-r--r--xs/src/libslic3r/GCode.hpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/xs/src/libslic3r/GCode.hpp b/xs/src/libslic3r/GCode.hpp
index ba5270785..b29a6ed2f 100644
--- a/xs/src/libslic3r/GCode.hpp
+++ b/xs/src/libslic3r/GCode.hpp
@@ -1,8 +1,6 @@
#ifndef slic3r_GCode_hpp_
#define slic3r_GCode_hpp_
-#define ENABLE_TIME_ESTIMATOR 1
-
#include "libslic3r.h"
#include "ExPolygon.hpp"
#include "GCodeWriter.hpp"
@@ -17,9 +15,7 @@
#include "GCode/SpiralVase.hpp"
#include "GCode/ToolOrdering.hpp"
#include "GCode/WipeTower.hpp"
-#if ENABLE_TIME_ESTIMATOR
#include "GCodeTimeEstimator.hpp"
-#endif // ENABLE_TIME_ESTIMATOR
#include "EdgeGrid.hpp"
#include <memory>
@@ -272,10 +268,8 @@ protected:
// Index of a last object copy extruded.
std::pair<const PrintObject*, Point> m_last_obj_copy;
-#if ENABLE_TIME_ESTIMATOR
// Time estimator
GCodeTimeEstimator m_time_estimator;
-#endif // ENABLE_TIME_ESTIMATOR
std::string _extrude(const ExtrusionPath &path, std::string description = "", double speed = -1);
void _print_first_layer_extruder_temperatures(FILE *file, Print &print, unsigned int first_printing_extruder_id, bool wait);