From 319313fc2d72c8e442a6030b4317a9d47da5a182 Mon Sep 17 00:00:00 2001 From: "xin.zhang" Date: Mon, 24 Mar 2025 23:31:27 +0800 Subject: [PATCH] FIX: remove the restriction jira: [STUDIO-11094] Change-Id: Ic13f07abaf5eda5d3077275d74071e5e342b2c77 --- src/slic3r/GUI/SelectMachine.cpp | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/slic3r/GUI/SelectMachine.cpp b/src/slic3r/GUI/SelectMachine.cpp index 4a190f854..833e1f620 100644 --- a/src/slic3r/GUI/SelectMachine.cpp +++ b/src/slic3r/GUI/SelectMachine.cpp @@ -4470,10 +4470,7 @@ void SelectMachineDialog::set_default_from_sdcard() } } - if (obj_ && - obj_->has_ams() && - (m_checkbox_list["use_ams"]->getValue() == "on") && - obj_->dev_id == m_printer_last_select) + if (obj_ && obj_->dev_id == m_printer_last_select) { m_mapping_popup.set_parent_item(item); m_mapping_popup.set_current_filament_id(fo.id);