From aceb87d18868dd7c207e4a97ff451762086d91d6 Mon Sep 17 00:00:00 2001 From: bubnikv Date: Tue, 7 Feb 2017 13:21:09 +0100 Subject: [PATCH] Change of defaults. Background processing disabled by default, default mode set to expert. --- lib/Slic3r/GUI.pm | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/lib/Slic3r/GUI.pm b/lib/Slic3r/GUI.pm index e655bb1b3..56cf1a0a1 100644 --- a/lib/Slic3r/GUI.pm +++ b/lib/Slic3r/GUI.pm @@ -63,10 +63,12 @@ our @cb; our $Settings = { _ => { - mode => 'simple', + # Simple mode is very limited, rather start with the expert mode. + mode => 'expert', version_check => 1, autocenter => 1, - background_processing => 1, + # Disable background processing by default as it is not stable. + background_processing => 0, # If set, the "Controller" tab for the control of the printer over serial line and the serial port settings are hidden. # By default, Prusa has the controller hidden. no_controller => 1,