Fix of the change of the perimeters count in a vase-mode (part fix of #1649)

This commit is contained in:
YuSanka 2019-01-14 15:38:54 +01:00
parent 19a6461608
commit 66f998bdbf
4 changed files with 13 additions and 2 deletions

View file

@ -325,6 +325,7 @@ public:
void set_value(const boost::any& value, bool change_event = false) {
m_disable_change_event = !change_event;
tmp_value = boost::any_cast<int>(value);
m_value = value;
dynamic_cast<wxSpinCtrl*>(window)->SetValue(tmp_value);
m_disable_change_event = false;
}