[Bf-blender-cvs] [01e3141] master: Fix T48902: MCE Dopesheet does not respect Left Click select

Sergey Sharybin noreply at git.blender.org
Tue Jul 26 14:39:46 CEST 2016


Commit: 01e3141ce6e4addec852ee842f939f56f18df3f6
Author: Sergey Sharybin
Date:   Tue Jul 26 14:39:06 2016 +0200
Branches: master
https://developer.blender.org/rB01e3141ce6e4addec852ee842f939f56f18df3f6

Fix T48902: MCE Dopesheet does not respect Left Click select

Make the operator consistent with animation dopesheet now.

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

M	source/blender/editors/space_clip/space_clip.c

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

diff --git a/source/blender/editors/space_clip/space_clip.c b/source/blender/editors/space_clip/space_clip.c
index 415839a..396d71f 100644
--- a/source/blender/editors/space_clip/space_clip.c
+++ b/source/blender/editors/space_clip/space_clip.c
@@ -818,7 +818,7 @@ static void clip_keymap(struct wmKeyConfig *keyconf)
 
 	keymap = WM_keymap_find(keyconf, "Clip Dopesheet Editor", SPACE_CLIP, 0);
 
-	kmi = WM_keymap_add_item(keymap, "CLIP_OT_dopesheet_select_channel", ACTIONMOUSE, KM_PRESS, 0, 0);
+	kmi = WM_keymap_add_item(keymap, "CLIP_OT_dopesheet_select_channel", LEFTMOUSE, KM_PRESS, 0, 0);
 	RNA_boolean_set(kmi->ptr, "extend", true);  /* toggle */
 
 	WM_keymap_add_item(keymap, "CLIP_OT_dopesheet_view_all", HOMEKEY, KM_PRESS, 0, 0);




More information about the Bf-blender-cvs mailing list