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_dolly.c')
-rw-r--r--source/blender/editors/space_view3d/view3d_navigate_dolly.c30
1 files changed, 24 insertions, 6 deletions
diff --git a/source/blender/editors/space_view3d/view3d_navigate_dolly.c b/source/blender/editors/space_view3d/view3d_navigate_dolly.c
index 0237ba8bdeb..d45b0c436ac 100644
--- a/source/blender/editors/space_view3d/view3d_navigate_dolly.c
+++ b/source/blender/editors/space_view3d/view3d_navigate_dolly.c
@@ -50,12 +50,30 @@ void viewdolly_modal_keymap(wmKeyConfig *keyconf)
/* disabled mode switching for now, can re-implement better, later on */
#if 0
- WM_modalkeymap_add_item(
- keymap, LEFTMOUSE, KM_RELEASE, KM_ANY, 0, KM_ANY, VIEWROT_MODAL_SWITCH_ROTATE);
- WM_modalkeymap_add_item(
- keymap, LEFTCTRLKEY, KM_RELEASE, KM_ANY, 0, KM_ANY, VIEWROT_MODAL_SWITCH_ROTATE);
- WM_modalkeymap_add_item(
- keymap, LEFTSHIFTKEY, KM_PRESS, KM_ANY, 0, KM_ANY, VIEWROT_MODAL_SWITCH_MOVE);
+ WM_modalkeymap_add_item(keymap,
+ &(const KeyMapItem_Params){
+ .type = LEFTMOUSE,
+ .value = KM_RELEASE,
+ .modifier = KM_ANY,
+ .direction = KM_ANY,
+ },
+ VIEWROT_MODAL_SWITCH_ROTATE);
+ WM_modalkeymap_add_item(keymap,
+ &(const KeyMapItem_Params){
+ .type = EVT_LEFTCTRLKEY,
+ .value = KM_RELEASE,
+ .modifier = KM_ANY,
+ .direction = KM_ANY,
+ },
+ VIEWROT_MODAL_SWITCH_ROTATE);
+ 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 */