summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorMarcel Admiraal <madmiraal@users.noreply.github.com>2021-04-25 09:07:26 +0100
committerMarcel Admiraal <madmiraal@users.noreply.github.com>2021-04-25 09:07:26 +0100
commit4311c2f66e4a1c9b7b77e8d3cdce4be8fa3ec7fa (patch)
tree08b5aad5e48b049dd4cb98e84fff32cda14f1663 /modules
parentd1dc28e46c5ecb5cbbeeaccbca9940a070538a2a (diff)
Fix CSGMesh undo not refreshing gizmo
Diffstat (limited to 'modules')
-rw-r--r--modules/csg/csg_shape.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/csg/csg_shape.cpp b/modules/csg/csg_shape.cpp
index 77be493be9..ecdab025d0 100644
--- a/modules/csg/csg_shape.cpp
+++ b/modules/csg/csg_shape.cpp
@@ -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() {