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>2018-12-18 15:22:22 +0300
committerYuSanka <yusanka@gmail.com>2018-12-18 17:29:49 +0300
commit7d1fb201e725a2c83ceb5a226ed76e652154fb4a (patch)
tree7729e739441ea678c31b1eff64e5722a07e49ad4 /src/slic3r/GUI/Field.hpp
parent66b5deccf5b90e24ecf5935f263b7f893dd5440e (diff)
Implemented updating of the settings values for PointCtrl and Choice.
* wx_EVT_KILL_FOCES doesn't handled on OSX, so values are updating on wx_EVT_TEXT like a temporary workaround.
Diffstat (limited to 'src/slic3r/GUI/Field.hpp')
-rw-r--r--src/slic3r/GUI/Field.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/slic3r/GUI/Field.hpp b/src/slic3r/GUI/Field.hpp
index 0097d3ec0..4a19b6103 100644
--- a/src/slic3r/GUI/Field.hpp
+++ b/src/slic3r/GUI/Field.hpp
@@ -266,7 +266,6 @@ public:
}
boost::any& get_value() override;
- bool is_defined_input_value() const ;
virtual void enable();
virtual void disable();
@@ -395,6 +394,7 @@ public:
void BUILD() override;
+ void OnKillFocus(wxEvent& e, wxTextCtrl* win);
void set_value(const Vec2d& value, bool change_event = false);
void set_value(const boost::any& value, bool change_event = false);
boost::any& get_value() override;