From 969b096efc4a276d5af1ebd4e40225c014142d93 Mon Sep 17 00:00:00 2001 From: Manolis Papadeas <35376950+OverloadedOrama@users.noreply.github.com> Date: Tue, 11 May 2021 04:15:42 +0300 Subject: [PATCH] Alt + mouse click when resizing with gizmos now works as intended when there is an active transformation occurring --- src/UI/Canvas/Selection.gd | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/UI/Canvas/Selection.gd b/src/UI/Canvas/Selection.gd index 9c337bddf..67b8e65d4 100644 --- a/src/UI/Canvas/Selection.gd +++ b/src/UI/Canvas/Selection.gd @@ -108,6 +108,8 @@ func _input(event : InputEvent) -> void: Global.has_focus = false mouse_pos_on_gizmo_drag = Global.canvas.current_pixel dragged_gizmo = gizmo + if Input.is_action_pressed("alt"): + transform_content_confirm() if !is_moving_content: temp_rect = big_bounding_rectangle temp_bitmap = Global.current_project.selection_bitmap