Add CORE to supported printers

This commit is contained in:
David Kocik 2024-11-20 12:51:38 +01:00
parent d45bce5254
commit 9302cb10ae

View File

@ -710,6 +710,7 @@ void PhysicalPrinterDialog::update_host_type(bool printer_change)
|| boost::starts_with(model, "MINI") || boost::starts_with(model, "MINI")
|| boost::starts_with(model, "MK2.5") || boost::starts_with(model, "MK2.5")
|| boost::starts_with(model, "XL") || boost::starts_with(model, "XL")
|| boost::starts_with(model, "CORE")
); );
}; };
// allowed models are: all MK3/S and MK2.5/S. // 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, "MINI")
|| boost::starts_with(model, "MK2.5") || boost::starts_with(model, "MK2.5")
|| boost::starts_with(model, "XL") || boost::starts_with(model, "XL")
|| boost::starts_with(model, "CORE")
); );
}; };