From efc2da6549832a555db2129475ecc1a0048d3bca Mon Sep 17 00:00:00 2001 From: "xin.zhang" Date: Sun, 28 Sep 2025 10:26:11 +0800 Subject: [PATCH] ENH: add notice for PrintStatusAmsMappingInvalid jira: [STUDIO-14577] Change-Id: I9c875ef07da8f7b56eee1923afd9fa5e9f346255 (cherry picked from commit ad0c04c57848325dcd3e57a67a29207f57f0207d) --- src/slic3r/GUI/PrePrintChecker.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/slic3r/GUI/PrePrintChecker.cpp b/src/slic3r/GUI/PrePrintChecker.cpp index 50f805c8b1..77b226a10c 100644 --- a/src/slic3r/GUI/PrePrintChecker.cpp +++ b/src/slic3r/GUI/PrePrintChecker.cpp @@ -78,6 +78,7 @@ wxString PrePrintChecker::get_pre_state_msg(PrintDialogStatus status) case PrintStatusInSystemPrinting: return _L("The printer is executing instructions. Please restart printing after it ends"); case PrintStatusInPrinting: return _L("The printer is busy on other print job"); case PrintStatusAmsOnSettingup: return _L("AMS is setting up. Please try again later."); + case PrintStatusAmsMappingInvalid: return _L("Not all filaments used in slicing are mapped to the printer. Please check the mapping of filaments."); case PrintStatusAmsMappingMixInvalid: return _L("Please do not mix-use the Ext with AMS"); case PrintStatusNozzleDataInvalid: return _L("Invalid nozzle information, please refresh or manually set nozzle information."); case PrintStatusLanModeNoSdcard: return _L("Storage needs to be inserted before printing via LAN.");