From eb766f1d3ff7f8ebb1ff257e2bdd154c20ed3c1d Mon Sep 17 00:00:00 2001 From: Joshua Leung Date: Sun, 27 Dec 2009 01:36:32 +0000 Subject: DopeSheet + Graph Editor hotkey tweak: Made the TAB key toggle the editability of selected channels in the keyframes area in addition to the channels list. --- source/blender/editors/space_action/action_ops.c | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) (limited to 'source/blender/editors/space_action/action_ops.c') diff --git a/source/blender/editors/space_action/action_ops.c b/source/blender/editors/space_action/action_ops.c index 68c354b2b87..f02974c2ea4 100644 --- a/source/blender/editors/space_action/action_ops.c +++ b/source/blender/editors/space_action/action_ops.c @@ -155,11 +155,14 @@ static void action_keymap_keyframes (wmKeyConfig *keyconf, wmKeyMap *keymap) WM_keymap_add_item(keymap, "ACTION_OT_previewrange_set", PKEY, KM_PRESS, KM_CTRL|KM_ALT, 0); WM_keymap_add_item(keymap, "ACTION_OT_view_all", HOMEKEY, KM_PRESS, 0, 0); + /* animation module */ + /* channels list + * NOTE: these operators were originally for the channels list, but are added here too for convenience... + */ + WM_keymap_add_item(keymap, "ANIM_OT_channels_editable_toggle", TABKEY, KM_PRESS, 0, 0); + /* transform system */ transform_keymap_for_space(keyconf, keymap, SPACE_ACTION); - - /* test */ - /* WM_keymap_add_item(keymap, "ACTION_OT_test", QKEY, KM_PRESS, 0, 0); */ } /* --------------- */ @@ -171,7 +174,7 @@ void action_keymap(wmKeyConfig *keyconf) /* channels */ /* Channels are not directly handled by the Action Editor module, but are inherited from the Animation module. * All the relevant operations, keymaps, drawing, etc. can therefore all be found in that module instead, as these - * are all used for the IPO-Editor too. + * are all used for the Graph-Editor too. */ /* keyframes */ -- cgit v1.2.3