From 7522d7fe02d61f1bfc84945c0fbf22490d28ed5d Mon Sep 17 00:00:00 2001 From: Lukas Matena Date: Tue, 14 Nov 2023 12:48:02 +0100 Subject: [PATCH] Another follow-up to 187ff61: include MK3.9 --- src/slic3r/GUI/Plater.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/slic3r/GUI/Plater.cpp b/src/slic3r/GUI/Plater.cpp index e22b5b6d4bc..15786db19e7 100644 --- a/src/slic3r/GUI/Plater.cpp +++ b/src/slic3r/GUI/Plater.cpp @@ -6745,7 +6745,8 @@ static void alert_when_exporting_binary_gcode(bool binary_output, const std::str if (binary_output && (boost::algorithm::contains(printer_notes, "PRINTER_MODEL_XL") || boost::algorithm::contains(printer_notes, "PRINTER_MODEL_MINI") - || boost::algorithm::contains(printer_notes, "PRINTER_MODEL_MK4"))) + || boost::algorithm::contains(printer_notes, "PRINTER_MODEL_MK4") + || boost::algorithm::contains(printer_notes, "PRINTER_MODEL_MK3.9"))) { AppConfig* app_config = wxGetApp().app_config; wxWindow* parent = wxGetApp().mainframe;