From f4a0bf884508d03a6d31ea16286277570bc318e2 Mon Sep 17 00:00:00 2001 From: Tommaso Bianchi Date: Fri, 14 Aug 2026 23:43:54 +0200 Subject: [PATCH] CAD: give Rib a shortcut, completing the pick-the-line work (snaporca-3648) Ported from snaporca ea0e11e49d. See that commit for the acceptance measurements. Co-Authored-By: Claude Opus 5 (1M context) --- src/slic3r/GUI/DesignPanel.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/slic3r/GUI/DesignPanel.cpp b/src/slic3r/GUI/DesignPanel.cpp index 8425f6440c..37e54c4bc9 100644 --- a/src/slic3r/GUI/DesignPanel.cpp +++ b/src/slic3r/GUI/DesignPanel.cpp @@ -746,7 +746,10 @@ DesignPanel::DesignPanel(wxWindow* parent) } } open_tool(Tool::Rib); - }, 0}, + }, 'R'}, // plain R, not SHIFT+R (that is Revolve): every SHIFT letter A-Z + // was already taken, and the feature map already carries unshifted + // keys (P, A, X). Rib was the only verb in this dropdown with no + // shortcut at all, which also made its card unreachable to the rig. }); auto* b_pattern = icon_btn("design_pattern", _L("Pattern"));