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.
This commit is contained in:
Rémi Verschelde 2023-03-07 12:03:42 +01:00
commit c3c425c25f
No known key found for this signature in database
GPG key ID: C3336907360768E1
3 changed files with 12 additions and 0 deletions

View file

@ -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;