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:
authorWilliam Reynish <billrey@me.com>2018-12-30 18:30:17 +0300
committerSeverin <eiseljulian@gmail.com>2018-12-30 18:30:17 +0300
commitd96596de294ec763bf4ffbbce4e2d1a9950580a7 (patch)
tree06f423b82c34ec19e1291642f704c37631b6c530 /release/scripts/startup/bl_ui/properties_object.py
parentbcf0c7143371deba9050eedd0f3474ae4fd91cc9 (diff)
Fix: Cramped layout in object parent properties
Diffstat (limited to 'release/scripts/startup/bl_ui/properties_object.py')
-rw-r--r--release/scripts/startup/bl_ui/properties_object.py10
1 files changed, 6 insertions, 4 deletions
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")