From 08d2d21a792d97619690b7ecc4349d0139661381 Mon Sep 17 00:00:00 2001 From: vaner-org Date: Tue, 19 Aug 2025 19:09:27 +0530 Subject: [PATCH] Fix doubled transformation when mouse released --- editor/animation/animation_blend_space_1d_editor.cpp | 1 - editor/animation/animation_blend_space_2d_editor.cpp | 1 - 2 files changed, 2 deletions(-) diff --git a/editor/animation/animation_blend_space_1d_editor.cpp b/editor/animation/animation_blend_space_1d_editor.cpp index 91cf5cd2b0..cb280d28a6 100644 --- a/editor/animation/animation_blend_space_1d_editor.cpp +++ b/editor/animation/animation_blend_space_1d_editor.cpp @@ -167,7 +167,6 @@ void AnimationNodeBlendSpace1DEditor::_blend_space_gui_input(const Refadd_undo_method(this, "_update_edited_point_pos"); undo_redo->commit_action(); updating = false; - _update_edited_point_pos(); } dragging_selected_attempt = false; diff --git a/editor/animation/animation_blend_space_2d_editor.cpp b/editor/animation/animation_blend_space_2d_editor.cpp index 44fd58234d..b3b3339612 100644 --- a/editor/animation/animation_blend_space_2d_editor.cpp +++ b/editor/animation/animation_blend_space_2d_editor.cpp @@ -262,7 +262,6 @@ void AnimationNodeBlendSpace2DEditor::_blend_space_gui_input(const Refadd_undo_method(this, "_update_edited_point_pos"); undo_redo->commit_action(); updating = false; - _update_edited_point_pos(); } } dragging_selected_attempt = false;