Switch focus mode toggle to shift+escape to avoid conflict with Windows.

This commit is contained in:
Nolan Darilek 2020-05-29 11:07:56 -05:00
parent 229353b37f
commit d7b4744c6a

View File

@ -208,7 +208,7 @@ func _input(event):
if (
event is InputEventKey
and Input.is_key_pressed(KEY_ESCAPE)
and Input.is_key_pressed(KEY_CONTROL)
and Input.is_key_pressed(KEY_SHIFT)
and not event.echo
):
get_tree().set_input_as_handled()