From 9302cb10ae1ad5f2843d4858284a8b9acba4b8b9 Mon Sep 17 00:00:00 2001 From: David Kocik Date: Wed, 20 Nov 2024 12:51:38 +0100 Subject: [PATCH] Add CORE to supported printers --- src/slic3r/GUI/PhysicalPrinterDialog.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/slic3r/GUI/PhysicalPrinterDialog.cpp b/src/slic3r/GUI/PhysicalPrinterDialog.cpp index 373d0b6bfd..4fee64e03b 100644 --- a/src/slic3r/GUI/PhysicalPrinterDialog.cpp +++ b/src/slic3r/GUI/PhysicalPrinterDialog.cpp @@ -710,6 +710,7 @@ void PhysicalPrinterDialog::update_host_type(bool printer_change) || boost::starts_with(model, "MINI") || boost::starts_with(model, "MK2.5") || boost::starts_with(model, "XL") + || boost::starts_with(model, "CORE") ); }; // allowed models are: all MK3/S and MK2.5/S. @@ -721,6 +722,7 @@ void PhysicalPrinterDialog::update_host_type(bool printer_change) || boost::starts_with(model, "MINI") || boost::starts_with(model, "MK2.5") || boost::starts_with(model, "XL") + || boost::starts_with(model, "CORE") ); };