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-04-10 16:17:02 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-04-10 16:17:02 +0400
commit4c8bfbe850a67d8b99f090950bd3af54e1eae42e (patch)
treeb78f194e8f477f129809f8a341d5696abc48d94d /object_print3d_utils/ui.py
parent4d24e706b1d1796f6631960360df58ba81214485 (diff)
add option to copy textures on export.
Diffstat (limited to 'object_print3d_utils/ui.py')
-rw-r--r--object_print3d_utils/ui.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/object_print3d_utils/ui.py b/object_print3d_utils/ui.py
index d8da9663..25a72c93 100644
--- a/object_print3d_utils/ui.py
+++ b/object_print3d_utils/ui.py
@@ -110,11 +110,13 @@ class Print3DToolBar:
col = layout.column()
col.label("Export Directory:")
- col.prop(print_3d, "export_path", text="")
+ rowsub = col.row()
+ rowsub.prop(print_3d, "export_path", text="")
+ rowsub.prop(print_3d, "use_export_texture", text="", icon='FILE_IMAGE')
rowsub = col.row(align=True)
rowsub.prop(print_3d, "export_format", text="")
- rowsub.operator("mesh.print3d_export", text="", icon='EXPORT')
+ rowsub.operator("mesh.print3d_export", text="Export", icon='EXPORT')
Print3DToolBar.draw_report(layout, context)