[Bf-blender-cvs] [6dab4ce] master: Fix for missing shortcuts for mask copy/paste

Sergey Sharybin noreply at git.blender.org
Fri Sep 26 10:41:22 CEST 2014


Commit: 6dab4ce5984143794e5fa1085fb61d784b7a3ee9
Author: Sergey Sharybin
Date:   Fri Sep 26 14:40:27 2014 +0600
Branches: master
https://developer.blender.org/rB6dab4ce5984143794e5fa1085fb61d784b7a3ee9

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.

===================================================================

M	source/blender/editors/mask/mask_edit.c

===================================================================

diff --git a/source/blender/editors/mask/mask_edit.c b/source/blender/editors/mask/mask_edit.c
index 1acdff8..e2eb32e 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);




More information about the Bf-blender-cvs mailing list