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:
authorJeroen Bakker <j.bakker@atmind.nl>2019-04-04 15:01:29 +0300
committerJeroen Bakker <j.bakker@atmind.nl>2019-04-04 15:01:57 +0300
commit1ffa7462a2114597bbea87cc0b09b48d7a09d5d5 (patch)
treef88cde3c1009ac5e9f4ed78db9a453b0f5efaf2a /release
parent0298f1d6349666935aa54ad84eedbd79a7022e74 (diff)
Avoid flow to avoid the collection textfield from becoming too small
The collection instance field is currently using flow.column(), which makes the name of the collection instance unreadably small. {F6898084} I get that we want to save vertical space to avoid scrolling, but in this case it generates a new problem, so I'd rather avoid flow here. Patch by sebastian_k Reviewed By: billreynish Differential Revision: https://developer.blender.org/D4614
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/properties_object.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/scripts/startup/bl_ui/properties_object.py b/release/scripts/startup/bl_ui/properties_object.py
index 4b7098f1e0d..59ff21e1dd7 100644
--- a/release/scripts/startup/bl_ui/properties_object.py
+++ b/release/scripts/startup/bl_ui/properties_object.py
@@ -306,7 +306,7 @@ class OBJECT_PT_instancing(ObjectButtonsPanel, Panel):
layout.prop(ob, "use_instance_vertices_rotation", text="Align to Vertex Normal")
elif ob.instance_type == 'COLLECTION':
- col = flow.column()
+ col = layout.column()
col.prop(ob, "instance_collection", text="Collection")
if ob.instance_type != 'NONE' or len(ob.particle_systems):