From 1d608a763a780e4a2814b6dbb81b904b379813f7 Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Tue, 23 May 2023 09:43:42 -0400 Subject: [PATCH] focus forward to text display helper sot he call jsut works --- minigui.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/minigui.d b/minigui.d index d6e4ceb..608c597 100644 --- a/minigui.d +++ b/minigui.d @@ -12407,7 +12407,7 @@ abstract class EditableTextWidget : EditableTextWidgetParent { override int maxHeight() { return tdh.maxHeight; } version(use_new_text_system) - override void focus() { if(tdh) tdh.focus(); } + override void focus() { if(tdh) tdh.focus(); else super.focus(); } void selectAll() { version(win32_widgets)