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:
authorCampbell Barton <ideasman42@gmail.com>2013-11-25 10:17:28 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-11-26 00:16:17 +0400
commit6501c6cadfef1804dfa4b7aa2eb208207570a42a (patch)
treecd7e410f1be2dc13f82d8595ab9a83505418ab3e /object_print3d_utils/ui.py
parent71ce07d57ba7ec41696fd8afe8c22e4f449be350 (diff)
Fix Print3D Toolbox: fix button alignment
Diffstat (limited to 'object_print3d_utils/ui.py')
-rw-r--r--object_print3d_utils/ui.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/object_print3d_utils/ui.py b/object_print3d_utils/ui.py
index 84c3b3f7..58b8497f 100644
--- a/object_print3d_utils/ui.py
+++ b/object_print3d_utils/ui.py
@@ -80,19 +80,19 @@ class Print3DToolBar:
col = layout.column(align=True)
col.operator("mesh.print3d_check_solid", text="Solid")
col.operator("mesh.print3d_check_intersect", text="Intersections")
- rowsub = col.row()
+ rowsub = col.row(align=True)
rowsub.operator("mesh.print3d_check_degenerate", text="Degenerate")
rowsub.prop(print_3d, "threshold_zero", text="")
- rowsub = col.row()
+ rowsub = col.row(align=True)
rowsub.operator("mesh.print3d_check_distort", text="Distorted")
rowsub.prop(print_3d, "angle_distort", text="")
- rowsub = col.row()
+ rowsub = col.row(align=True)
rowsub.operator("mesh.print3d_check_thick", text="Thickness")
rowsub.prop(print_3d, "thickness_min", text="")
- rowsub = col.row()
+ rowsub = col.row(align=True)
rowsub.operator("mesh.print3d_check_sharp", text="Edge Sharp")
rowsub.prop(print_3d, "angle_sharp", text="")
- rowsub = col.row()
+ rowsub = col.row(align=True)
rowsub.operator("mesh.print3d_check_overhang", text="Overhang")
rowsub.prop(print_3d, "angle_overhang", text="")
col = layout.column()
@@ -102,7 +102,7 @@ class Print3DToolBar:
row.label("Cleanup:")
col = layout.column(align=True)
col.operator("mesh.print3d_clean_isolated", text="Isolated")
- rowsub = col.row()
+ rowsub = col.row(align=True)
rowsub.operator("mesh.print3d_clean_distorted", text="Distorted")
rowsub.prop(print_3d, "angle_distort", text="")
# XXX TODO