From f1905256f86fc3e8857003a8e9919e7e300453c4 Mon Sep 17 00:00:00 2001 From: Alessandro Ranellucci Date: Sun, 13 May 2012 23:14:56 +0200 Subject: [PATCH] Lower default threads to 2 --- lib/Slic3r.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Slic3r.pm b/lib/Slic3r.pm index f41d41edf5..7ab466f270 100644 --- a/lib/Slic3r.pm +++ b/lib/Slic3r.pm @@ -37,7 +37,7 @@ use Slic3r::Surface; use Slic3r::TriangleMesh; our $have_threads = $Config{useithreads} && eval "use threads; use Thread::Queue; 1"; -our $threads = $have_threads ? 4 : undef; +our $threads = $have_threads ? 2 : undef; # miscellaneous options our $notes = '';