1
0
Fork 0
mirror of https://github.com/Orama-Interactive/Pixelorama.git synced 2025-01-18 09:09:47 +00:00
Left tool shortcuts get ignored completely if we change is_action_pressed to is_action_released.
This commit is contained in:
OverloadedOrama 2020-05-20 00:51:41 +03:00
parent eb47d24df3
commit c1db72865f

View file

@ -235,9 +235,9 @@ func _input(event : InputEvent) -> void:
if event.is_action_pressed("undo") or event.is_action_pressed("redo") or event.is_action_pressed("redo_secondary"):
return
for t in tools: # Handle tool shortcuts
if event.is_action_released(t[2]): # Shortcut for right button (with Alt)
if event.is_action_pressed(t[2]): # Shortcut for right button (with Alt)
_on_Tool_pressed(t[0], false, false)
elif event.is_action_released(t[1]): # Shortcut for left button
elif event.is_action_pressed(t[1]): # Shortcut for left button
_on_Tool_pressed(t[0], false, true)