From 13f5171eb3867bd03b65be0bb99346dd937bc384 Mon Sep 17 00:00:00 2001 From: tao wang Date: Fri, 7 Apr 2023 12:15:42 +0800 Subject: [PATCH] FIX:fixed no longer prompt no SD card when disabling AMS Change-Id: I4083ffc46dee3526d61735206c4795f96d9f2f96 --- 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 4e94b611c..5259a21fb 100644 --- a/src/slic3r/GUI/SelectMachine.cpp +++ b/src/slic3r/GUI/SelectMachine.cpp @@ -2837,7 +2837,7 @@ void SelectMachineDialog::update_show_status() } // no ams - if (!obj_->has_ams()) { + if (!obj_->has_ams() || !ams_check->GetValue()) { if (!has_tips(obj_)) show_status(PrintDialogStatus::PrintStatusReadingFinished); return;