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:
Diffstat (limited to 'src/slic3r/GUI/Field.hpp')
-rw-r--r--src/slic3r/GUI/Field.hpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/slic3r/GUI/Field.hpp b/src/slic3r/GUI/Field.hpp
index e48473346..5095015ef 100644
--- a/src/slic3r/GUI/Field.hpp
+++ b/src/slic3r/GUI/Field.hpp
@@ -295,6 +295,8 @@ public:
class CheckBox : public Field {
using Field::Field;
bool m_is_na_val {false};
+
+ void set_widget_value(bool new_val);
public:
CheckBox(const ConfigOptionDef& opt, const t_config_option_key& id) : Field(opt, id) {}
CheckBox(wxWindow* parent, const ConfigOptionDef& opt, const t_config_option_key& id) : Field(parent, opt, id) {}
@@ -315,8 +317,8 @@ public:
void msw_rescale() override;
- void enable() override { dynamic_cast<wxCheckBox*>(window)->Enable(); }
- void disable() override { dynamic_cast<wxCheckBox*>(window)->Disable(); }
+ void enable() override { window->Enable(true); }
+ void disable() override { window->Enable(false); }
wxWindow* getWindow() override { return window; }
};