1
0
Fork 0
mirror of https://github.com/Orama-Interactive/Pixelorama.git synced 2025-03-13 06:45:17 +00:00

Update Main.gd

This commit is contained in:
Emmanouil Papadeas 2022-07-18 22:12:17 +03:00
parent 0b1ea0d680
commit 69f25d398e

View file

@ -361,10 +361,8 @@ func _on_BackupConfirmation_popup_hide() -> void:
func _use_osx_shortcuts() -> void:
var inputmap := InputMap
for action in inputmap.get_actions():
var action_list: Array = inputmap.get_action_list(action)
for action in InputMap.get_actions():
var action_list: Array = InputMap.get_action_list(action)
if action_list.size() == 0:
continue
var event: InputEvent = action_list[0]