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:
authorThomas Dinges <blender@dingto.org>2013-09-09 18:26:39 +0400
committerThomas Dinges <blender@dingto.org>2013-09-09 18:26:39 +0400
commit8802a4bcb0a4ea039c484205668193ddcb935146 (patch)
tree05ffe8967ee0f116fac284cb190303fb9ab489ac /release
parent9c2c3c18045714025331f942e09480b2ca891119 (diff)
3D View / UI:
* Save some space in the "Curve Display" panel. Patch by Sebastian König, thanks!
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/space_view3d.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/release/scripts/startup/bl_ui/space_view3d.py b/release/scripts/startup/bl_ui/space_view3d.py
index 81892b62ad7..1ea1c0a892c 100644
--- a/release/scripts/startup/bl_ui/space_view3d.py
+++ b/release/scripts/startup/bl_ui/space_view3d.py
@@ -2781,9 +2781,9 @@ class VIEW3D_PT_view3d_curvedisplay(Panel):
curve = context.active_object.data
col = layout.column()
- col.label(text="Overlays:")
- col.prop(curve, "show_handles", text="Handles")
- col.prop(curve, "show_normal_face", text="Normals")
+ row = col.row()
+ row.prop(curve, "show_handles", text="Handles")
+ row.prop(curve, "show_normal_face", text="Normals")
col.prop(context.scene.tool_settings, "normal_size", text="Normal Size")