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:
authorJulian Eisel <eiseljulian@gmail.com>2015-08-24 23:44:33 +0300
committerJulian Eisel <eiseljulian@gmail.com>2015-08-24 23:44:33 +0300
commit65552f9bc9f8efbe55c7d615a933cf0ce782d996 (patch)
tree6aad236f7d081f003086f9541f5bad84809db230 /release
parent042e8e4b77bfc3216cde444716b05376b4b289b9 (diff)
Rework widget UserPref options
Improved naming and tooltip descriptions, removed unnecessary options
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/space_userpref.py16
1 files changed, 5 insertions, 11 deletions
diff --git a/release/scripts/startup/bl_ui/space_userpref.py b/release/scripts/startup/bl_ui/space_userpref.py
index c319f0cd8bb..9eb2da506a5 100644
--- a/release/scripts/startup/bl_ui/space_userpref.py
+++ b/release/scripts/startup/bl_ui/space_userpref.py
@@ -216,18 +216,12 @@ class USERPREF_PT_interface(Panel):
#col.label(text="Open Toolbox Delay:")
#col.prop(view, "open_left_mouse_delay", text="Hold LMB")
#col.prop(view, "open_right_mouse_delay", text="Hold RMB")
- col.prop(view, "show_manipulator")
- sub = col.column()
- sub.active = view.show_manipulator
- sub.prop(view, "manipulator_size", text="Size")
- sub.prop(view, "manipulator_handle_size", text="Handle Size")
- sub.prop(view, "manipulator_hotspot", text="Hotspot")
- col.separator()
- sub = col.column()
- sub.prop(view, "shaded_widgets")
- sub.prop(view, "widgets_3d")
-
+ col.label(text="Widgets:")
+ col.prop(view, "manipulator_size")
+ col.prop(view, "shaded_widgets")
+ col.prop(view, "widgets_3d")
+
col.separator()
col.separator()
col.separator()