Browse Source

Fix undo for Particles 3D gizmo

Chaosus 6 years ago
parent
commit
43a3db4c00
1 changed files with 2 additions and 2 deletions
  1. 2 2
      editor/spatial_editor_gizmos.cpp

+ 2 - 2
editor/spatial_editor_gizmos.cpp

@@ -2414,8 +2414,8 @@ void ParticlesGizmoPlugin::commit_handle(EditorSpatialGizmo *p_gizmo, int p_idx,
 
 
 	UndoRedo *ur = SpatialEditor::get_singleton()->get_undo_redo();
 	UndoRedo *ur = SpatialEditor::get_singleton()->get_undo_redo();
 	ur->create_action(TTR("Change Particles AABB"));
 	ur->create_action(TTR("Change Particles AABB"));
-	ur->add_do_method(particles, "set_custom_aabb", particles->get_visibility_aabb());
-	ur->add_undo_method(particles, "set_custom_aabb", p_restore);
+	ur->add_do_method(particles, "set_visibility_aabb", particles->get_visibility_aabb());
+	ur->add_undo_method(particles, "set_visibility_aabb", p_restore);
 	ur->commit_action();
 	ur->commit_action();
 }
 }