[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [27847] trunk/blender/release/scripts/ui/ properties_data_curve.py: Fix [#21814] 3D Curves and Caps Confusion

Matt Ebb matt at mke3.net
Tue Mar 30 02:57:54 CEST 2010


Revision: 27847
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=27847
Author:   broken
Date:     2010-03-30 02:57:54 +0200 (Tue, 30 Mar 2010)

Log Message:
-----------
Fix [#21814] 3D Curves and Caps Confusion

Stopped curves 'caps' properties from being greyed out when the curve is 3D - 
there's the totally obscure feature where turning off 'Front' and 'Back' turns the 
3D curve into a tube.

Would really like this feature to be implemented in a less bizarre way, but 
for now it should be enabled in the UI at least.

Modified Paths:
--------------
    trunk/blender/release/scripts/ui/properties_data_curve.py

Modified: trunk/blender/release/scripts/ui/properties_data_curve.py
===================================================================
--- trunk/blender/release/scripts/ui/properties_data_curve.py	2010-03-30 00:41:26 UTC (rev 27846)
+++ trunk/blender/release/scripts/ui/properties_data_curve.py	2010-03-30 00:57:54 UTC (rev 27847)
@@ -120,7 +120,6 @@
 
         if is_curve or is_text:
             sub = col.column()
-            sub.active = (curve.dimensions == '2D')
             sub.label(text="Caps:")
             sub.prop(curve, "front")
             sub.prop(curve, "back")





More information about the Bf-blender-cvs mailing list