From 3daddb1f1ef791d679d95e50c58876b5d9aaf972 Mon Sep 17 00:00:00 2001 From: ErLullo Date: Fri, 20 Feb 2026 14:09:54 +0100 Subject: [PATCH] Reverted OnIMEUpdate to use TextLine.SetText It seems to fix the cursor issue on textboxes --- assets/root/ui.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/root/ui.py b/assets/root/ui.py index a6e3381c..7362ee56 100644 --- a/assets/root/ui.py +++ b/assets/root/ui.py @@ -778,7 +778,7 @@ def OnIMECloseReadingWnd(self): def OnIMEUpdate(self): snd.PlaySound("sound/ui/type.wav") - self.SetText(ime.GetText()) + TextLine.SetText(self, ime.GetText()) def OnIMETab(self): if self.eventTab: