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:
authorMatt Ebb <matt@mke3.net>2009-11-28 07:43:15 +0300
committerMatt Ebb <matt@mke3.net>2009-11-28 07:43:15 +0300
commit49b828f7fe484886d050e7884b69cab08db448b6 (patch)
tree2449aca0e269dd4cf4d40a0b8da96eb517b508b0 /release/scripts/ui
parentaa3ed478483e02101d7ee04d9118f5ecca066a8e (diff)
A few new mouse navigation config options to help transitioning users
* Dolly zoom Vertical/Horizontal switch Changes between using vertical or horizontal mouse movement for zooming * Invert Zoom Direction Inverts the vertical or horizontal mouse movement for dolly zoom
Diffstat (limited to 'release/scripts/ui')
-rw-r--r--release/scripts/ui/space_userpref.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/release/scripts/ui/space_userpref.py b/release/scripts/ui/space_userpref.py
index 4dfcc80ca1d..e9f49665062 100644
--- a/release/scripts/ui/space_userpref.py
+++ b/release/scripts/ui/space_userpref.py
@@ -1136,6 +1136,9 @@ class USERPREF_PT_input(bpy.types.Panel):
sub.label(text="Zoom Style:")
sub.row().prop(inputs, "viewport_zoom_style", expand=True)
+ if inputs.viewport_zoom_style == 'DOLLY':
+ sub.row().prop(inputs, "zoom_axis", expand=True)
+ sub.prop(inputs, "invert_zoom_direction")
#sub.prop(inputs, "use_middle_mouse_paste")
@@ -1143,7 +1146,6 @@ class USERPREF_PT_input(bpy.types.Panel):
#sub = col.column()
#sub.label(text="Mouse Wheel:")
- #sub.prop(view, "wheel_invert_zoom", text="Invert Zoom")
#sub.prop(view, "wheel_scroll_lines", text="Scroll Lines")
col.separator()