From d96596de294ec763bf4ffbbce4e2d1a9950580a7 Mon Sep 17 00:00:00 2001 From: William Reynish Date: Sun, 30 Dec 2018 16:30:17 +0100 Subject: Fix: Cramped layout in object parent properties --- release/scripts/startup/bl_ui/properties_object.py | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'release') diff --git a/release/scripts/startup/bl_ui/properties_object.py b/release/scripts/startup/bl_ui/properties_object.py index 5740239fc12..1cf8c75adad 100644 --- a/release/scripts/startup/bl_ui/properties_object.py +++ b/release/scripts/startup/bl_ui/properties_object.py @@ -142,7 +142,7 @@ class OBJECT_PT_relations(ObjectButtonsPanel, Panel): col = flow.column() col.prop(ob, "parent") - sub = col.row(align=True) + sub = col.column() sub.prop(ob, "parent_type") parent = ob.parent if parent and ob.parent_type == 'BONE' and parent.type == 'ARMATURE': @@ -152,19 +152,21 @@ class OBJECT_PT_relations(ObjectButtonsPanel, Panel): col = flow.column() col.active = (ob.parent is not None) col.prop(ob, "use_slow_parent") - sub = col.row(align=True) + sub = col.column() sub.active = (ob.use_slow_parent) sub.prop(ob, "slow_parent_offset", text="Offset") - col = flow.column() col.separator() + col = flow.column() + col.prop(ob, "track_axis", text="Tracking Axis") col.prop(ob, "up_axis", text="Up Axis") - col = flow.column() col.separator() + col = flow.column() + col.prop(ob, "pass_index") -- cgit v1.2.3