From 4df38d4c4b1c41be4b0a97c36cc33dbc2822a26e Mon Sep 17 00:00:00 2001 From: bubnikv Date: Fri, 10 May 2019 14:58:58 +0200 Subject: [PATCH] Wizard: on first execution, only select the first FDM printer, not the first SLA printer. --- src/slic3r/GUI/ConfigWizard.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/slic3r/GUI/ConfigWizard.cpp b/src/slic3r/GUI/ConfigWizard.cpp index 5850ea4e7..3f5e3a36d 100644 --- a/src/slic3r/GUI/ConfigWizard.cpp +++ b/src/slic3r/GUI/ConfigWizard.cpp @@ -323,7 +323,7 @@ PagePrinters::PagePrinters(ConfigWizard *parent, wxString title, wxString shortn COL_SIZE = 200, }; - bool check_first_variant = wizard_p()->check_first_variant(); + bool check_first_variant = technology == T_FFF && wizard_p()->check_first_variant(); AppConfig &appconfig_vendors = this->wizard_p()->appconfig_vendors;