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:
authorJonathan Williamson <jonathan@cgcookie.com>2014-01-01 04:53:12 +0400
committerJonathan Williamson <jonathan@cgcookie.com>2014-01-01 04:53:12 +0400
commitbf0231f297908b0dc232a17e47ad391607daf6fb (patch)
tree1ef2397713446eab35410549b72671484fa90ec4 /release/scripts/startup/bl_ui/space_userpref.py
parente271e2d84e3ebb64ea64d88976101569867e3dc9 (diff)
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
Diffstat (limited to 'release/scripts/startup/bl_ui/space_userpref.py')
-rw-r--r--release/scripts/startup/bl_ui/space_userpref.py8
1 files 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()