From 08afbefa560af431061eab7136543717abe0adbe Mon Sep 17 00:00:00 2001 From: Yves <40505552+FractalEngineer@users.noreply.github.com> Date: Wed, 11 Feb 2026 16:08:21 +0800 Subject: [PATCH] Change Ctrl+A behavior from all plates to current plate only (#12236) Change CTRL-A behavior from ALL Plates to current plate only --- src/slic3r/GUI/GLCanvas3D.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/slic3r/GUI/GLCanvas3D.cpp b/src/slic3r/GUI/GLCanvas3D.cpp index 23f037d4ed..583380af72 100644 --- a/src/slic3r/GUI/GLCanvas3D.cpp +++ b/src/slic3r/GUI/GLCanvas3D.cpp @@ -3273,7 +3273,7 @@ void GLCanvas3D::on_char(wxKeyEvent& evt) case WXK_CONTROL_A: #endif /* __APPLE__ */ if (!is_in_painting_mode && !m_layers_editing.is_enabled()) - post_event(SimpleEvent(EVT_GLCANVAS_SELECT_ALL)); + post_event(SimpleEvent(EVT_GLCANVAS_SELECT_CURR_PLATE_ALL)); break; #ifdef __APPLE__ case 'c':