mirror of
https://github.com/Orama-Interactive/Pixelorama.git
synced 2025-01-18 09:09:47 +00:00
Revert c02cda6b10
Left tool shortcuts get ignored completely if we change is_action_pressed to is_action_released.
This commit is contained in:
parent
eb47d24df3
commit
c1db72865f
|
@ -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)
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue