From fd2ce47824662c071e10e0b74be20bfb750f4e7a Mon Sep 17 00:00:00 2001 From: scheffle Date: Fri, 1 Mar 2024 15:42:40 +0100 Subject: [PATCH] remove delayed call and instead call it directly --- vstgui/lib/ctexteditor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vstgui/lib/ctexteditor.cpp b/vstgui/lib/ctexteditor.cpp index 47ae52e05..923b8c5a7 100644 --- a/vstgui/lib/ctexteditor.cpp +++ b/vstgui/lib/ctexteditor.cpp @@ -612,7 +612,7 @@ void TextEditorView::parentSizeChanged () } else { - Call::later (func, 1); + func (); } } else