[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [59957] trunk/blender/release/scripts/ startup/bl_ui/space_view3d.py: 3D View / UI:

Thomas Dinges blender at dingto.org
Mon Sep 9 16:26:40 CEST 2013


Revision: 59957
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=59957
Author:   dingto
Date:     2013-09-09 14:26:39 +0000 (Mon, 09 Sep 2013)
Log Message:
-----------
3D View / UI:
* Save some space in the "Curve Display" panel.

Patch by Sebastian K?\195?\182nig, thanks! 

Modified Paths:
--------------
    trunk/blender/release/scripts/startup/bl_ui/space_view3d.py

Modified: trunk/blender/release/scripts/startup/bl_ui/space_view3d.py
===================================================================
--- trunk/blender/release/scripts/startup/bl_ui/space_view3d.py	2013-09-09 14:23:58 UTC (rev 59956)
+++ trunk/blender/release/scripts/startup/bl_ui/space_view3d.py	2013-09-09 14:26:39 UTC (rev 59957)
@@ -2781,9 +2781,9 @@
         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")
 
 




More information about the Bf-blender-cvs mailing list