[Bf-blender-cvs] [4156618] multiview: Fix operator tied to the "D" shortcut (set_stereo_3d)

Dalai Felinto noreply at git.blender.org
Wed Feb 25 20:48:19 CET 2015


Commit: 415661862015fc8970c54b2e329258d978d5e038
Author: Dalai Felinto
Date:   Mon Feb 23 18:07:47 2015 -0300
Branches: multiview
https://developer.blender.org/rB415661862015fc8970c54b2e329258d978d5e038

Fix operator tied to the "D" shortcut (set_stereo_3d)

Note: the idea of this operator is to quickly toggle fullscreen when
required by some stereo modes. At the moment it's showing the menu,
which is not useful, to be improved soon.

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

M	source/blender/windowmanager/intern/wm_operators.c

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

diff --git a/source/blender/windowmanager/intern/wm_operators.c b/source/blender/windowmanager/intern/wm_operators.c
index 5ef24a0..71045b8 100644
--- a/source/blender/windowmanager/intern/wm_operators.c
+++ b/source/blender/windowmanager/intern/wm_operators.c
@@ -5215,7 +5215,7 @@ void wm_window_keymap(wmKeyConfig *keyconf)
 	(void)data_path;
 
 
-	WM_keymap_add_item(keymap, "WM_OT_stereo_toggle", DKEY, KM_PRESS, 0, 0);
+	WM_keymap_add_item(keymap, "WM_OT_set_stereo_3d", DKEY, KM_PRESS, 0, 0);
 
 	gesture_circle_modal_keymap(keyconf);
 	gesture_border_modal_keymap(keyconf);




More information about the Bf-blender-cvs mailing list