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:
authorYuSanka <yusanka@gmail.com>2019-07-02 16:26:11 +0300
committerYuSanka <yusanka@gmail.com>2019-07-02 16:26:11 +0300
commit0bcad2a5c52b774eba6472077cbe6cb786c20f27 (patch)
treef9e50e847d7733998ba72842de1adbcde3fff40f /src/slic3r/GUI/GUI_ObjectLayers.hpp
parentb835075fd64e82c36ea821cd326b3f3ecd005356 (diff)
Fix for the last commit
Diffstat (limited to 'src/slic3r/GUI/GUI_ObjectLayers.hpp')
-rw-r--r--src/slic3r/GUI/GUI_ObjectLayers.hpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/slic3r/GUI/GUI_ObjectLayers.hpp b/src/slic3r/GUI/GUI_ObjectLayers.hpp
index 253cbf0a4..f274183e2 100644
--- a/src/slic3r/GUI/GUI_ObjectLayers.hpp
+++ b/src/slic3r/GUI/GUI_ObjectLayers.hpp
@@ -73,13 +73,12 @@ public:
void create_layers_list();
void update_layers_list();
- void update_scene_from_editor_selection(const t_layer_height_range& range, EditorType type) const;
+ void update_scene_from_editor_selection() const;
void UpdateAndShow(const bool show) override;
void msw_rescale();
-
- const t_layer_height_range& get_selectable_range() const { return m_selectable_range; }
- EditorType get_selection_type() const { return m_selection_type; }
+ void reset_selection();
+ void set_selectable_range(const t_layer_height_range& range) { m_selectable_range = range; }
friend class LayerRangeEditor;
};