[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [41871] trunk/blender/release/scripts/ startup/bl_ui/properties_object_constraint.py: Bugfix [#29264] Superfluous control in Maintain Volume constraint

Joshua Leung aligorith at gmail.com
Tue Nov 15 12:15:41 CET 2011


Revision: 41871
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=41871
Author:   aligorith
Date:     2011-11-15 11:15:37 +0000 (Tue, 15 Nov 2011)
Log Message:
-----------
Bugfix [#29264] Superfluous control in Maintain Volume constraint

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

Modified: trunk/blender/release/scripts/startup/bl_ui/properties_object_constraint.py
===================================================================
--- trunk/blender/release/scripts/startup/bl_ui/properties_object_constraint.py	2011-11-15 11:04:29 UTC (rev 41870)
+++ trunk/blender/release/scripts/startup/bl_ui/properties_object_constraint.py	2011-11-15 11:15:37 UTC (rev 41871)
@@ -420,7 +420,9 @@
 
         layout.prop(con, "volume")
 
-        self.space_template(layout, con)
+        row = layout.row()
+        row.label(text="Convert:")
+        row.prop(con, "owner_space", text="")
 
     def COPY_TRANSFORMS(self, context, layout, con):
         self.target_template(layout, con)




More information about the Bf-blender-cvs mailing list