Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephen Leger <stephen@3dservices.ch>2019-01-28 11:28:50 +0300
committerStephen Leger <stephen@3dservices.ch>2019-01-28 11:28:50 +0300
commitd7bfc48b3307b7bf53ff69abb0ccd8b605a65598 (patch)
treec3728beadbb49bf1a2e61825d0416761b7d2aa0f /archipack/archipack_floor.py
parentbcfdc06a16deeb5b48deda5024069a2ce141203c (diff)
archipack 2.8 fix icon_only
Diffstat (limited to 'archipack/archipack_floor.py')
-rw-r--r--archipack/archipack_floor.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/archipack/archipack_floor.py b/archipack/archipack_floor.py
index 82c1f000..5a5bc66f 100644
--- a/archipack/archipack_floor.py
+++ b/archipack/archipack_floor.py
@@ -1670,13 +1670,13 @@ class ARCHIPACK_PT_floor(Panel):
box = layout.box()
row = box.row()
if props.parts_expand:
- row.prop(props, 'parts_expand', icon="TRIA_DOWN", icon_only=True, text="Parts", emboss=False)
+ row.prop(props, 'parts_expand', icon="TRIA_DOWN", text="Parts", emboss=False)
box.prop(props, 'n_parts')
# box.prop(prop, 'closed')
for i, part in enumerate(props.parts):
part.draw(context, layout, i)
else:
- row.prop(props, 'parts_expand', icon="TRIA_RIGHT", icon_only=True, text="Parts", emboss=False)
+ row.prop(props, 'parts_expand', icon="TRIA_RIGHT", text="Parts", emboss=False)
layout.separator()
box = layout.box()
box.prop(props, 'pattern', text="")