Added thread safe packet handlers

This commit is contained in:
2024-02-28 13:23:17 +01:00
parent cb4dd41358
commit db3ee3a685
11 changed files with 37 additions and 16 deletions

View File

@ -26,5 +26,8 @@ func on_text_submitted(message: String):
text = ""
release_focus()
if !message:
return
var chat := owner as Chat
chat.message_submitted.emit(message)