Keymap: resolve nurbs edit-mode conflict between "Repeat" & "Select Row"

Use "Ctrl-Shift-R" for select row so the "Repeat" shortcut is available.

Resolves #83123.
This commit is contained in:
Campbell Barton
2025-01-14 17:43:47 +11:00
parent 8dc3735c3d
commit d18fb4010c

View File

@@ -5679,7 +5679,7 @@ def km_edit_curve_legacy(params):
("curve.handle_type_set", {"type": 'V', "value": 'PRESS'}, None),
("curve.vertex_add", {"type": params.action_mouse, "value": 'CLICK', "ctrl": True}, None),
*_template_items_select_actions(params, "curve.select_all"),
("curve.select_row", {"type": 'R', "value": 'PRESS', "shift": True}, None),
("curve.select_row", {"type": 'R', "value": 'PRESS', "shift": True, "ctrl": True}, None),
("curve.select_more", {"type": 'NUMPAD_PLUS', "value": 'PRESS', "ctrl": True, "repeat": True}, None),
("curve.select_less", {"type": 'NUMPAD_MINUS', "value": 'PRESS', "ctrl": True, "repeat": True}, None),
("curve.select_linked", {"type": 'L', "value": 'PRESS', "ctrl": True}, None),