SLA gizmo - fixed hiding of objects and instances

This commit is contained in:
Lukas Matena 2019-02-06 17:20:54 +01:00
parent 9fc75d7b34
commit 4357c80793
4 changed files with 17 additions and 14 deletions

View file

@ -2225,8 +2225,10 @@ void GLGizmoSlaSupports::on_set_state()
if (m_model_object)
m_parent.toggle_model_objects_visibility(true, m_model_object, m_active_instance);
}
if (m_state == Off)
if (m_state == Off) {
m_parent.toggle_model_objects_visibility(true);
m_editing_mode = false;
}
}