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_slab.py
parentbcfdc06a16deeb5b48deda5024069a2ce141203c (diff)
archipack 2.8 fix icon_only
Diffstat (limited to 'archipack/archipack_slab.py')
-rw-r--r--archipack/archipack_slab.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/archipack/archipack_slab.py b/archipack/archipack_slab.py
index 38150094..3c0d513c 100644
--- a/archipack/archipack_slab.py
+++ b/archipack/archipack_slab.py
@@ -1327,13 +1327,13 @@ class ARCHIPACK_PT_slab(Panel):
box = layout.box()
row = box.row()
if prop.parts_expand:
- row.prop(prop, 'parts_expand', icon="TRIA_DOWN", icon_only=True, text="Parts", emboss=False)
+ row.prop(prop, 'parts_expand', icon="TRIA_DOWN", text="Parts", emboss=False)
box.prop(prop, 'n_parts')
# box.prop(prop, 'closed')
for i, part in enumerate(prop.parts):
part.draw(context, layout, i)
else:
- row.prop(prop, 'parts_expand', icon="TRIA_RIGHT", icon_only=True, text="Parts", emboss=False)
+ row.prop(prop, 'parts_expand', icon="TRIA_RIGHT", text="Parts", emboss=False)
class ARCHIPACK_PT_slab_cutter(Panel):