From 9560a292f2cec8c4117f96bbfe5a2168606b355a Mon Sep 17 00:00:00 2001 From: tao wang Date: Thu, 17 Aug 2023 16:05:48 +0800 Subject: [PATCH] FIX:check if the printer and preset are the same jira:[STUDIO-4018] Change-Id: I69ea1e3f8e8214ae68464665e1e7260fcc41dd82 --- src/slic3r/GUI/SelectMachine.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/slic3r/GUI/SelectMachine.cpp b/src/slic3r/GUI/SelectMachine.cpp index 349c580bce..23f4e03578 100644 --- a/src/slic3r/GUI/SelectMachine.cpp +++ b/src/slic3r/GUI/SelectMachine.cpp @@ -3144,7 +3144,7 @@ void SelectMachineDialog::update_show_status() } } - if (is_blocking_printing()) { + if (m_print_type == PrintFromType::FROM_NORMAL && is_blocking_printing()) { show_status(PrintDialogStatus::PrintStatusUnsupportedPrinter); return; }