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

github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorenricoturri1966 <enricoturri@seznam.cz>2020-10-15 11:25:13 +0300
committerenricoturri1966 <enricoturri@seznam.cz>2020-10-15 11:25:13 +0300
commit8580ecacca32b2c6a5d22fdb17cc459236f04baa (patch)
treee48c1df6d537e575490816fb8225597aa706d9b1 /src/slic3r/GUI/Preferences.hpp
parentd7686d7e6a70ce15d2b47d6d4295d5dedcb50fdb (diff)
Added option to apply the sequential slider in preview to top layer only or to whole gcode toolpaths
Diffstat (limited to 'src/slic3r/GUI/Preferences.hpp')
-rw-r--r--src/slic3r/GUI/Preferences.hpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/slic3r/GUI/Preferences.hpp b/src/slic3r/GUI/Preferences.hpp
index f61c4d932..68574fbcc 100644
--- a/src/slic3r/GUI/Preferences.hpp
+++ b/src/slic3r/GUI/Preferences.hpp
@@ -27,11 +27,13 @@ class PreferencesDialog : public DPIDialog
wxRadioBox* m_layout_mode_box;
bool isOSX {false};
bool m_settings_layout_changed {false};
+ bool m_seq_top_layer_only_changed{ false };
public:
PreferencesDialog(wxWindow* parent);
~PreferencesDialog() {}
- bool settings_layout_changed() { return m_settings_layout_changed; }
+ bool settings_layout_changed() const { return m_settings_layout_changed; }
+ bool seq_top_layer_only_changed() const { return m_seq_top_layer_only_changed; }
void build();
void accept();