Fix updating of gizmos when instances are added
Gizmos were in fact updated after an instance was added, but before it was selected
This commit is contained in:
parent
5b15e778ef
commit
04cfd5f832
2 changed files with 3 additions and 3 deletions
src/slic3r/GUI
|
@ -2771,6 +2771,7 @@ void ObjectList::delete_all_objects_from_list()
|
|||
void ObjectList::increase_object_instances(const size_t obj_idx, const size_t num)
|
||||
{
|
||||
select_item(m_objects_model->AddInstanceChild(m_objects_model->GetItemById(obj_idx), num));
|
||||
selection_changed();
|
||||
}
|
||||
|
||||
void ObjectList::decrease_object_instances(const size_t obj_idx, const size_t num)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue