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:
Diffstat (limited to 'release/ui/buttons_object.py')
-rw-r--r--release/ui/buttons_object.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/release/ui/buttons_object.py b/release/ui/buttons_object.py
index d59ed604c55..5bd4bbbd6bd 100644
--- a/release/ui/buttons_object.py
+++ b/release/ui/buttons_object.py
@@ -51,7 +51,9 @@ class OBJECT_PT_relations(ObjectButtonsPanel):
col.itemR(ob, "parent", text="")
sub = col.column()
- sub.itemR(ob, "parent_type", text="Type")
+ split = sub.split(percentage=0.3)
+ split.itemL(text="Type:")
+ split.itemR(ob, "parent_type", text="")
parent = ob.parent
if parent and ob.parent_type == 'BONE' and parent.type == 'ARMATURE':
sub.item_pointerR(ob, "parent_bone", parent.data, "bones", text="")