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:
authorSergey Sharybin <sergey.vfx@gmail.com>2012-05-01 13:38:29 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2012-05-01 13:38:29 +0400
commitf9663b744e72af4384faa36290a8e75a46424e93 (patch)
treefa639202e9571d002e22cf1e7ca1047e075b8f4d /release
parentf0e427e558d7597f92c6187369451ad1621c8720 (diff)
Do not stick normal length slider in 3d viewport properties to display normals buttons
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/space_view3d.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/release/scripts/startup/bl_ui/space_view3d.py b/release/scripts/startup/bl_ui/space_view3d.py
index b1b9742e16a..ca6da539884 100644
--- a/release/scripts/startup/bl_ui/space_view3d.py
+++ b/release/scripts/startup/bl_ui/space_view3d.py
@@ -2379,9 +2379,10 @@ class VIEW3D_PT_view3d_meshdisplay(Panel):
col.separator()
col.label(text="Normals:")
- row = col.row(align=True)
- row.prop(mesh, "show_normal_vertex", text="", icon='VERTEXSEL')
- row.prop(mesh, "show_normal_face", text="", icon='FACESEL')
+ row = col.row()
+ sub = row.row(align=True)
+ sub.prop(mesh, "show_normal_vertex", text="", icon='VERTEXSEL')
+ sub.prop(mesh, "show_normal_face", text="", icon='FACESEL')
row.prop(context.scene.tool_settings, "normal_size", text="Size")
col.separator()