WIP: track creation and deletion both in frontend and backend.

This commit is contained in:
2025-07-28 01:03:40 +02:00
parent ecadfb7033
commit cb38a509b5
15 changed files with 192 additions and 49 deletions

View File

@@ -4,6 +4,11 @@ func _ready() -> void:
text_submitted.connect(submit)
func submit(text: String):
caret_column = 0
release_focus()
var owner = get_owner()
if owner is Control:
var c = owner as Control
c.grab_focus()
pass