Fix T65106: Add missing Copy Keymap for GPencil Sculpt mode

The Ctrl+C keymap was missing in Sculpt mode
This commit is contained in:
Antonio Vazquez 2019-05-25 10:49:46 +02:00
parent e12f42946f
commit 26c317b666
Notes: blender-bot 2023-02-14 09:29:42 +01:00
Referenced by issue #65106, Grease Pencil Sculpt Mode - Ctl + C does not work for Clone Tool
1 changed files with 2 additions and 0 deletions

View File

@ -3192,6 +3192,8 @@ def km_grease_pencil_stroke_sculpt_mode(params):
{"properties": [("data_path_primary", 'tool_settings.gpencil_sculpt.brush.size')]}),
# Context menu
op_panel("VIEW3D_PT_gpencil_sculpt_context_menu", params.context_menu_event),
# Copy
("gpencil.copy", {"type": 'C', "value": 'PRESS', "ctrl": True}, None),
# Display
*_grease_pencil_display(),
])