From 9092389ef99322a2c44eb9763ccfbd6fa989540e Mon Sep 17 00:00:00 2001 From: Ocraftyone Date: Mon, 22 Dec 2025 11:54:54 -0500 Subject: [PATCH] Show printer bed based on BBL vendor, not network (#11610) * Show printer bed based on BBL vendor not network * add comment --------- Co-authored-by: Ioannis Giannakas <59056762+igiannakas@users.noreply.github.com> Co-authored-by: SoftFever --- src/slic3r/GUI/Plater.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/slic3r/GUI/Plater.cpp b/src/slic3r/GUI/Plater.cpp index 0a462a06f3..ff784d4528 100644 --- a/src/slic3r/GUI/Plater.cpp +++ b/src/slic3r/GUI/Plater.cpp @@ -574,7 +574,9 @@ void Sidebar::priv::layout_printer(bool isBBL, bool isDual) // ORCA show plate type combo box only when its supported PresetBundle &preset_bundle = *wxGetApp().preset_bundle; auto cfg = preset_bundle.printers.get_edited_preset().config; - panel_printer_bed->Show(isBBL || cfg.opt_bool("support_multi_bed_types")); + // Orca: we use preset_bundle.is_bbl_vendor() instead of isBBL to determine if the plate type combo box should be shown + // ref: https://github.com/OrcaSlicer/OrcaSlicer/pull/11610#discussion_r2607411847 + panel_printer_bed->Show(preset_bundle.is_bbl_vendor() || cfg.opt_bool("support_multi_bed_types")); extruder_dual_sizer->Show(isDual);