From dfb120c6d73d7bdceffe6e02aeeebd8a40013d8f Mon Sep 17 00:00:00 2001 From: mugulmd Date: Mon, 16 Jan 2023 02:57:13 -0800 Subject: [PATCH] [ui] ThumbnailCache: limit number of worker threads to 3 --- meshroom/ui/components/thumbnail.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meshroom/ui/components/thumbnail.py b/meshroom/ui/components/thumbnail.py index 2ea542b3..a2ca2bae 100644 --- a/meshroom/ui/components/thumbnail.py +++ b/meshroom/ui/components/thumbnail.py @@ -52,7 +52,7 @@ class ThumbnailCache(QObject): thumbnailCreated = Signal(QUrl) # Thread pool for running createThumbnail asynchronously on a fixed number of worker threads - pool = ThreadPool() + pool = ThreadPool(processes=3) @staticmethod def initialize():