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:
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();