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:
authorJoshua Leung <aligorith@gmail.com>2011-11-15 15:15:37 +0400
committerJoshua Leung <aligorith@gmail.com>2011-11-15 15:15:37 +0400
commit5f18cc2238ee8a6839e47c7cfc743416cd09fdbb (patch)
tree6bcbf8193accf07e5ee9a0a2d0ad6e334ace27b9 /release
parentcc93e476abea344495e3288b1aa864c11935c608 (diff)
Bugfix [#29264] Superfluous control in Maintain Volume constraint
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/properties_object_constraint.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/release/scripts/startup/bl_ui/properties_object_constraint.py b/release/scripts/startup/bl_ui/properties_object_constraint.py
index 1ff9a8a0449..038d7a38fd6 100644
--- a/release/scripts/startup/bl_ui/properties_object_constraint.py
+++ b/release/scripts/startup/bl_ui/properties_object_constraint.py
@@ -420,7 +420,9 @@ class ConstraintButtonsPanel():
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)