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:
authorJoshua Leung <aligorith@gmail.com>2010-07-20 16:37:42 +0400
committerJoshua Leung <aligorith@gmail.com>2010-07-20 16:37:42 +0400
commitbeb98c9e0c17234572d152937cd7ca72f9240b59 (patch)
tree44f07d4db9d217e54ab48aea35d20347211b9e4f /release/scripts/ui/space_userpref.py
parentf9e9e90a0293e4251528ceaaf7e7b000d7c05874 (diff)
Bugfix #22872: invert zoom direction doesn't work
The setting for this (IMO it should really be on by default, for reasons I've outlined recently) was not exposed at all. The setting that was shown was a new(?) option in 2.5 which dealt with Ctrl-MMB drag zoom.
Diffstat (limited to 'release/scripts/ui/space_userpref.py')
-rw-r--r--release/scripts/ui/space_userpref.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/release/scripts/ui/space_userpref.py b/release/scripts/ui/space_userpref.py
index ac1b11282f3..2429f6e472c 100644
--- a/release/scripts/ui/space_userpref.py
+++ b/release/scripts/ui/space_userpref.py
@@ -352,7 +352,7 @@ class USERPREF_PT_edit(bpy.types.Panel):
col.prop(edit, "duplicate_lamp", text="Lamp")
col.prop(edit, "duplicate_material", text="Material")
col.prop(edit, "duplicate_texture", text="Texture")
- col.prop(edit, "duplicate_fcurve", text="F-Curve")
+ #col.prop(edit, "duplicate_fcurve", text="F-Curve")
col.prop(edit, "duplicate_action", text="Action")
col.prop(edit, "duplicate_particle", text="Particle")
@@ -778,8 +778,9 @@ class USERPREF_PT_input(InputKeyMapPanel):
#col.separator()
- #sub = col.column()
- #sub.label(text="Mouse Wheel:")
+ sub = col.column()
+ sub.label(text="Mouse Wheel:")
+ sub.prop(inputs, "wheel_invert_zoom", text="Invert Wheel Zoom Direction")
#sub.prop(view, "wheel_scroll_lines", text="Scroll Lines")
col.separator()