diff --git a/Scenes/GUI/EditorScreen.tscn b/Scenes/GUI/EditorScreen.tscn index 22756cc..77ab334 100644 --- a/Scenes/GUI/EditorScreen.tscn +++ b/Scenes/GUI/EditorScreen.tscn @@ -760,6 +760,7 @@ horizontal_alignment = 1 vertical_alignment = 1 [node name="InFileLabel" type="Label" parent="ShowtapeLoadScreen/DialogPanel"] +layout_mode = 0 offset_left = 8.0 offset_top = 73.0 offset_right = 264.0 @@ -792,6 +793,7 @@ tooltip_text = "Browse for a file." text = "Browse" [node name="CancelButton" type="Button" parent="ShowtapeLoadScreen/DialogPanel"] +layout_mode = 0 offset_left = 309.0 offset_top = 216.0 offset_right = 405.0 @@ -800,6 +802,7 @@ text = "Cancel " [node name="OpenButton" type="Button" parent="ShowtapeLoadScreen/DialogPanel"] +layout_mode = 0 offset_left = 408.0 offset_top = 216.0 offset_right = 504.0 diff --git a/Scripts/MovementRow.gd b/Scripts/MovementRow.gd index 17fe05c..4c9716c 100644 --- a/Scripts/MovementRow.gd +++ b/Scripts/MovementRow.gd @@ -123,7 +123,7 @@ func _ready() -> void: update_text() func _process(_delta: float) -> void: - if (binding): return + if (binding || key_binding.keycode == 0): return if (Input.is_key_pressed(key_binding.keycode)): if (!held_on_previous_frame): movement_in.emit(movement_name, in_flow)