diff --git a/release/scripts/startup/bl_ui/properties_constraint.py b/release/scripts/startup/bl_ui/properties_constraint.py index 4ca2f773dcc..2a98303d00e 100644 --- a/release/scripts/startup/bl_ui/properties_constraint.py +++ b/release/scripts/startup/bl_ui/properties_constraint.py @@ -96,25 +96,25 @@ class ConstraintButtonsPanel: def CHILD_OF(self, context, layout, con): self.target_template(layout, con) - split = layout.split() + #split = layout.split() - col = split.column() - col.label(text="Location:") - col.prop(con, "use_location_x", text="X") - col.prop(con, "use_location_y", text="Y") - col.prop(con, "use_location_z", text="Z") + #col = split.column() + #col.label(text="Location:") + #col.prop(con, "use_location_x", text="X") + #col.prop(con, "use_location_y", text="Y") + #col.prop(con, "use_location_z", text="Z") - col = split.column() - col.label(text="Rotation:") - col.prop(con, "use_rotation_x", text="X") - col.prop(con, "use_rotation_y", text="Y") - col.prop(con, "use_rotation_z", text="Z") + #col = split.column() + #col.label(text="Rotation:") + #col.prop(con, "use_rotation_x", text="X") + #col.prop(con, "use_rotation_y", text="Y") + #col.prop(con, "use_rotation_z", text="Z") - col = split.column() - col.label(text="Scale:") - col.prop(con, "use_scale_x", text="X") - col.prop(con, "use_scale_y", text="Y") - col.prop(con, "use_scale_z", text="Z") + #col = split.column() + #col.label(text="Scale:") + #col.prop(con, "use_scale_x", text="X") + #col.prop(con, "use_scale_y", text="Y") + #col.prop(con, "use_scale_z", text="Z") row = layout.row() row.operator("constraint.childof_set_inverse")