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:
authorYuSanka <yusanka@gmail.com>2018-04-20 18:32:08 +0300
committerYuSanka <yusanka@gmail.com>2018-04-20 18:32:08 +0300
commitb8cb9369732757f427c264181d49e50a0f943237 (patch)
tree06eff0b39be24ab527ce8bef65dda187aef0979b /xs/src/slic3r/GUI/Tab.hpp
parent27f77c7680a23e6449d47b9cdb30c5c10c2e3bc2 (diff)
Added effective update of ComboBoxes on Plater
Diffstat (limited to 'xs/src/slic3r/GUI/Tab.hpp')
-rw-r--r--xs/src/slic3r/GUI/Tab.hpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/xs/src/slic3r/GUI/Tab.hpp b/xs/src/slic3r/GUI/Tab.hpp
index ba449c8c7..eda6727a8 100644
--- a/xs/src/slic3r/GUI/Tab.hpp
+++ b/xs/src/slic3r/GUI/Tab.hpp
@@ -237,12 +237,11 @@ public:
bool set_value(const t_config_option_key& opt_key, const boost::any& value);
wxSizer* description_line_widget(wxWindow* parent, ogStaticText** StaticText);
bool current_preset_is_dirty();
+
DynamicPrintConfig* get_config() { return m_config; }
- PresetCollection* get_presets()
- {
- return m_presets;
- }
+ PresetCollection* get_presets() { return m_presets; }
std::vector<std::string> get_dependent_tabs() { return m_reload_dependent_tabs; }
+ size_t get_selected_preset_item() { return m_selected_preset_item; }
void on_value_change(const std::string& opt_key, const boost::any& value);