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.
This commit is contained in:
Sergey Sharybin 2014-09-26 14:40:27 +06:00
parent dcc281b74a
commit 6dab4ce598
1 changed files with 2 additions and 0 deletions

View File

@ -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);