[Bf-blender-cvs] [e99fcb0] blender-v2.72-release: Fix for missing shortcuts for mask copy/paste

Sergey Sharybin noreply at git.blender.org
Fri Oct 3 15:24:12 CEST 2014


Commit: e99fcb0dea7cb52ebd0075b99108b5e49f203289
Author: Sergey Sharybin
Date:   Fri Sep 26 14:40:27 2014 +0600
Branches: blender-v2.72-release
https://developer.blender.org/rBe99fcb0dea7cb52ebd0075b99108b5e49f203289

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