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:
authorSergey Sharybin <sergey.vfx@gmail.com>2014-09-26 12:40:27 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2014-09-26 12:40:27 +0400
commit6dab4ce5984143794e5fa1085fb61d784b7a3ee9 (patch)
tree2dca3e8bd8871308b48224898994e013e5bb08d1
parentdcc281b74a7108f9bd65145cb691fc66c72e441d (diff)
Fix for missing shortcuts for mask copy/paste
It's a safe fix and would be real cool to have in final release, it makes roto even easier than mentioned in the previous commit.
-rw-r--r--source/blender/editors/mask/mask_edit.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/editors/mask/mask_edit.c b/source/blender/editors/mask/mask_edit.c
index 1acdff8b824..e2eb32e86d9 100644
--- a/source/blender/editors/mask/mask_edit.c
+++ b/source/blender/editors/mask/mask_edit.c
@@ -550,6 +550,8 @@ void ED_keymap_mask(wmKeyConfig *keyconf)
/* duplicate */
WM_keymap_add_item(keymap, "MASK_OT_duplicate_move", DKEY, KM_PRESS, KM_SHIFT, 0);
+ WM_keymap_add_item(keymap, "MASK_OT_copy_splines", CKEY, KM_PRESS, KM_CTRL, 0);
+ WM_keymap_add_item(keymap, "MASK_OT_paste_splines", VKEY, KM_PRESS, KM_CTRL, 0);
/* for image editor only */
WM_keymap_add_item(keymap, "UV_OT_cursor_set", ACTIONMOUSE, KM_PRESS, 0, 0);