From 5f18cc2238ee8a6839e47c7cfc743416cd09fdbb Mon Sep 17 00:00:00 2001 From: Joshua Leung Date: Tue, 15 Nov 2011 11:15:37 +0000 Subject: Bugfix [#29264] Superfluous control in Maintain Volume constraint --- release/scripts/startup/bl_ui/properties_object_constraint.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'release') 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) -- cgit v1.2.3