Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoshua Leung <aligorith@gmail.com>2015-01-10 01:20:11 +0300
committerJoshua Leung <aligorith@gmail.com>2015-01-10 01:20:11 +0300
commit86159776241aad94301e152d44de59ff382fd3a9 (patch)
treef4899c56566ae8365d677f339db93e785e70db80
parentee4453f08369d8cf910a88763bfb14392ea489cf (diff)
Fix: Delkey didn't activate the Grease Pencil strokes delete operator like XKEY does
-rw-r--r--source/blender/editors/gpencil/gpencil_ops.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/editors/gpencil/gpencil_ops.c b/source/blender/editors/gpencil/gpencil_ops.c
index e84bd93cb6f..2768a453bc0 100644
--- a/source/blender/editors/gpencil/gpencil_ops.c
+++ b/source/blender/editors/gpencil/gpencil_ops.c
@@ -162,6 +162,7 @@ static void ed_keymap_gpencil_editing(wmKeyConfig *keyconf)
/* delete */
WM_keymap_add_item(keymap, "GPENCIL_OT_delete", XKEY, KM_PRESS, 0, 0);
+ WM_keymap_add_item(keymap, "GPENCIL_OT_delete", DELKEY, KM_PRESS, 0, 0);
/* copy + paste */
WM_keymap_add_item(keymap, "GPENCIL_OT_copy", CKEY, KM_PRESS, KM_CTRL, 0);