Follow-up of 15bd82e - Fixed detection of out of printbed after copy and paste

This commit is contained in:
enricoturri1966 2023-05-22 09:05:44 +02:00
parent 1619152350
commit e62c251898

View File

@ -4010,8 +4010,10 @@ void ObjectList::update_selections_on_canvas()
selection.add_volumes(mode, volume_idxs, single_selection);
}
wxGetApp().plater()->canvas3D()->update_gizmos_on_off_state();
wxGetApp().plater()->canvas3D()->render();
GLCanvas3D* canvas = wxGetApp().plater()->canvas3D();
canvas->update_gizmos_on_off_state();
canvas->check_volumes_outside_state();
canvas->render();
}
void ObjectList::select_item(const wxDataViewItem& item)