fixed scrolling issue

This commit is contained in:
Brazly
2026-01-23 15:08:07 +00:00
parent 2548d5128e
commit 6f92ab851f
2 changed files with 8 additions and 19 deletions

View File

@@ -29,10 +29,10 @@ func _input(event: InputEvent) -> void:
match event.keycode:
KEY_PAGEUP:
terminal.ScrollUp()
terminal.call_deferred("ScrollUp")
KEY_PAGEDOWN:
terminal.ScrollDown()
terminal.call_deferred("ScrollDown")
KEY_BACKSPACE:
terminal.InputDelChar()