From 22b0aba954aac408335c6f908ccaf24aa5ff865f Mon Sep 17 00:00:00 2001 From: Brian Fiete Date: Mon, 18 Mar 2024 05:43:27 -0400 Subject: [PATCH] Worker threads with 8MB stack --- IDE/src/IDEApp.bf | 2 ++ 1 file changed, 2 insertions(+) diff --git a/IDE/src/IDEApp.bf b/IDE/src/IDEApp.bf index 9e8674a4..6208f895 100644 --- a/IDE/src/IDEApp.bf +++ b/IDE/src/IDEApp.bf @@ -575,6 +575,8 @@ namespace IDE public this() { + ThreadPool.MaxStackSize = 8*1024*1024; + sApp = this; gApp = this; mMainThread = Thread.CurrentThread;