[Bf-blender-cvs] [bf0231f] master: Clean up Zoom Style section of Input Preferences

Jonathan Williamson noreply at git.blender.org
Wed Jan 1 01:55:52 CET 2014


Commit: bf0231f297908b0dc232a17e47ad391607daf6fb
Author: Jonathan Williamson
Date:   Tue Dec 31 18:53:12 2013 -0600
https://developer.blender.org/rBbf0231f297908b0dc232a17e47ad391607daf6fb

Clean up Zoom Style section of Input Preferences

This removes some grouping labels and improves option names to make them self explanatory and consistent with one another.

Before: https://www.dropbox.com/sh/zp4ildwpuew1w4x/RSLGK_gOG7
After: https://www.dropbox.com/s/c131zb5zb1ds5ap/Screenshot%202013-12-31%2018.54.38.png

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

M	release/scripts/startup/bl_ui/space_userpref.py

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

diff --git a/release/scripts/startup/bl_ui/space_userpref.py b/release/scripts/startup/bl_ui/space_userpref.py
index 96cb61f..8d4fd47 100644
--- a/release/scripts/startup/bl_ui/space_userpref.py
+++ b/release/scripts/startup/bl_ui/space_userpref.py
@@ -1046,25 +1046,25 @@ class USERPREF_PT_input(Panel):
         sub.label(text="Orbit Style:")
         sub.row().prop(inputs, "view_rotate_method", expand=True)
 
+        sub.separator()
+        
         sub.label(text="Zoom Style:")
         sub.row().prop(inputs, "view_zoom_method", text="")
         if inputs.view_zoom_method in {'DOLLY', 'CONTINUE'}:
             sub.row().prop(inputs, "view_zoom_axis", expand=True)
-            sub.prop(inputs, "invert_mouse_zoom")
+            sub.prop(inputs, "invert_mouse_zoom", text="Invert Mouse Zoom Direction")
 
         #sub.prop(inputs, "use_mouse_mmb_paste")
 
         #col.separator()
 
         sub = col.column()
-        sub.label(text="Mouse Wheel:")
         sub.prop(inputs, "invert_zoom_wheel", text="Invert Wheel Zoom Direction")
         #sub.prop(view, "wheel_scroll_lines", text="Scroll Lines")
 
         if sys.platform == "darwin":
             sub = col.column()
-            sub.label(text="Trackpad:")
-            sub.prop(inputs, "use_trackpad_natural")
+            sub.prop(inputs, "use_trackpad_natural", text="Natural Trackpad Direction")
 
         col.separator()
         sub = col.column()




More information about the Bf-blender-cvs mailing list