From bf0231f297908b0dc232a17e47ad391607daf6fb Mon Sep 17 00:00:00 2001 From: Jonathan Williamson Date: Tue, 31 Dec 2013 18:53:12 -0600 Subject: [PATCH] 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 --- release/scripts/startup/bl_ui/space_userpref.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/release/scripts/startup/bl_ui/space_userpref.py b/release/scripts/startup/bl_ui/space_userpref.py index 96cb61ff556..8d4fd47508c 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()