Skip to content
This repository has been archived by the owner on Feb 27, 2024. It is now read-only.

Commit

Permalink
Fixed the capture of Shift+KEY (#125)
Browse files Browse the repository at this point in the history
  • Loading branch information
RPicster authored Nov 23, 2022
1 parent 8a5e92c commit 5975af8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/scripts/tools/html_helpers.gd
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ func add_mac_actions():
func _input(event):
if not is_web:
return
if event is InputEventKey and event.is_pressed() and (event.control or event.alt or event.shift or event.meta):
if event is InputEventKey and event.is_pressed() and (event.control or event.alt or event.meta):
if _g.os != "MacOS":
# Handling default Inputs (Windows)
if event.scancode == KEY_V and not refreshing_clipboard:
Expand Down

0 comments on commit 5975af8

Please sign in to comment.