summaryrefslogtreecommitdiffstats
path: root/editor/plugins/collision_shape_2d_editor_plugin.cpp
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2023-03-07 12:03:42 +0100
committerRémi Verschelde <rverschelde@gmail.com>2023-03-07 12:03:42 +0100
commitc3c425c25f847d13eb9e4b50302057d0d228210a (patch)
treeacebb0584d24e05534e16704b4ac6d7c128e52cd /editor/plugins/collision_shape_2d_editor_plugin.cpp
parente404a7a8eea3540af59b3292c5ec5e199df866c5 (diff)
parent871ddf80c097717ad55026ce0cf60481af489eae (diff)
downloadredot-engine-c3c425c25f847d13eb9e4b50302057d0d228210a.tar.gz
Merge pull request #71156 from EricEzaM/71113-cancelling-node-selection-with-escape-breaks-shape-editing-undo
Fix cancelling selection (pressing escape) while gizmo editing making uncommitted changes.
Diffstat (limited to 'editor/plugins/collision_shape_2d_editor_plugin.cpp')
-rw-r--r--editor/plugins/collision_shape_2d_editor_plugin.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/editor/plugins/collision_shape_2d_editor_plugin.cpp b/editor/plugins/collision_shape_2d_editor_plugin.cpp
index c2d5885e43..4afbb87197 100644
--- a/editor/plugins/collision_shape_2d_editor_plugin.cpp
+++ b/editor/plugins/collision_shape_2d_editor_plugin.cpp
@@ -356,6 +356,7 @@ bool CollisionShape2DEditor::forward_canvas_gui_input(const Ref<InputEvent> &p_e
return false;
}
+ original_point = handles[edit_handle];
original = get_handle_value(edit_handle);
original_transform = node->get_global_transform();
last_point = original;
@@ -572,6 +573,11 @@ void CollisionShape2DEditor::edit(Node *p_node) {
_get_current_shape_type();
} else {
+ if (pressed) {
+ set_handle(edit_handle, original_point);
+ pressed = false;
+ }
+
edit_handle = -1;
shape_type = -1;