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:
authorEnrico Turri <enricoturri@seznam.cz>2020-02-06 17:19:53 +0300
committerEnrico Turri <enricoturri@seznam.cz>2020-02-06 17:19:53 +0300
commitc6ca180142fcc1ff3b87e31444f7c99f41e61495 (patch)
tree1b19aa72d57addd141c4bde1fcd7c06c925ba15b /src/slic3r/GUI/GLCanvas3D.hpp
parent3981e25f7511a4792db9748f58513227208a5c38 (diff)
Use frontend data to update labels
Diffstat (limited to 'src/slic3r/GUI/GLCanvas3D.hpp')
-rw-r--r--src/slic3r/GUI/GLCanvas3D.hpp5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/slic3r/GUI/GLCanvas3D.hpp b/src/slic3r/GUI/GLCanvas3D.hpp
index 71523a433..21f3f012c 100644
--- a/src/slic3r/GUI/GLCanvas3D.hpp
+++ b/src/slic3r/GUI/GLCanvas3D.hpp
@@ -40,9 +40,6 @@ class GCodePreviewData;
struct ThumbnailData;
#endif // ENABLE_THUMBNAIL_GENERATOR
struct SlicingParameters;
-#if ENABLE_SHOW_SCENE_LABELS
-struct PrintInstance;
-#endif // ENABLE_SHOW_SCENE_LABELS
enum LayerHeightEditActionType : unsigned int;
namespace GUI {
@@ -390,7 +387,7 @@ private:
void enable(bool enable) { m_enabled = enable; }
void show(bool show) { m_shown = m_enabled ? show : false; }
bool is_shown() const { return m_shown; }
- void render(const std::vector<const PrintInstance*>& sorted_instances) const;
+ void render(const std::vector<const ModelInstance*>& sorted_instances) const;
};
#endif // ENABLE_SHOW_SCENE_LABELS