Merge pull request #48174 from madmiraal/fix-csgmesh-undo

Fix `CSGMesh` undo not refreshing gizmo
This commit is contained in:
Rémi Verschelde 2021-04-25 11:14:46 +02:00 committed by GitHub
commit 15a85fe971
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -880,7 +880,7 @@ void CSGMesh3D::set_mesh(const Ref<Mesh> &p_mesh) {
mesh->connect("changed", callable_mp(this, &CSGMesh3D::_mesh_changed));
}
_make_dirty();
_mesh_changed();
}
Ref<Mesh> CSGMesh3D::get_mesh() {