From 9b60b9cd5db88e09bd188f17a5bd1df3da662627 Mon Sep 17 00:00:00 2001 From: Noisyfox Date: Wed, 17 Jun 2026 23:54:27 +0800 Subject: [PATCH] Fix wrong variant index is used on motion ability setting tab (#14253) Fix wrong variant index is used on motion ability setting tab (OrcaSlicer/OrcaSlicer#13308) --- src/slic3r/GUI/Tab.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/slic3r/GUI/Tab.cpp b/src/slic3r/GUI/Tab.cpp index a1dc626fc7..1b702c7b60 100644 --- a/src/slic3r/GUI/Tab.cpp +++ b/src/slic3r/GUI/Tab.cpp @@ -7458,7 +7458,7 @@ void Tab::switch_excluder(int extruder_id) if (extruder_id2 > 0) index = get_index_for_extruder(extruder_id2); is_extruder = true; - } else if (page->title().StartsWith("Speed limitation")) { + } else if (page->title().StartsWith("Motion ability")) { index = get_index_for_extruder(extruder_id == -1 ? 0 : extruder_id, 2); } }