From 1ffa7462a2114597bbea87cc0b09b48d7a09d5d5 Mon Sep 17 00:00:00 2001 From: Jeroen Bakker Date: Thu, 4 Apr 2019 14:01:29 +0200 Subject: 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 --- release/scripts/startup/bl_ui/properties_object.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'release') 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): -- cgit v1.2.3