Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender/editors/space_view3d/view3d_navigate_rotate.c')
-rw-r--r--source/blender/editors/space_view3d/view3d_navigate_rotate.c27
1 files changed, 24 insertions, 3 deletions
diff --git a/source/blender/editors/space_view3d/view3d_navigate_rotate.c b/source/blender/editors/space_view3d/view3d_navigate_rotate.c
index a53c71bd823..c9ef6422982 100644
--- a/source/blender/editors/space_view3d/view3d_navigate_rotate.c
+++ b/source/blender/editors/space_view3d/view3d_navigate_rotate.c
@@ -46,9 +46,30 @@ void viewrotate_modal_keymap(wmKeyConfig *keyconf)
/* disabled mode switching for now, can re-implement better, later on */
#if 0
- WM_modalkeymap_add_item(keymap, LEFTMOUSE, KM_PRESS, KM_ANY, 0, VIEWROT_MODAL_SWITCH_ZOOM);
- WM_modalkeymap_add_item(keymap, LEFTCTRLKEY, KM_PRESS, KM_ANY, 0, VIEWROT_MODAL_SWITCH_ZOOM);
- WM_modalkeymap_add_item(keymap, LEFTSHIFTKEY, KM_PRESS, KM_ANY, 0, VIEWROT_MODAL_SWITCH_MOVE);
+ WM_modalkeymap_add_item(keymap,
+ &(const KeyMapItem_Params){
+ .type = LEFTMOUSE,
+ .value = KM_PRESS,
+ .modifier = KM_ANY,
+ .direction = KM_ANY,
+ },
+ VIEWROT_MODAL_SWITCH_ZOOM);
+ WM_modalkeymap_add_item(keymap,
+ &(const KeyMapItem_Params){
+ .type = EVT_LEFTCTRLKEY,
+ .value = KM_PRESS,
+ .modifier = KM_ANY,
+ .direction = KM_ANY,
+ },
+ VIEWROT_MODAL_SWITCH_ZOOM);
+ WM_modalkeymap_add_item(keymap,
+ &(const KeyMapItem_Params){
+ .type = EVT_LEFTSHIFTKEY,
+ .value = KM_PRESS,
+ .modifier = KM_ANY,
+ .direction = KM_ANY,
+ },
+ VIEWROT_MODAL_SWITCH_MOVE);
#endif
/* assign map to operators */