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:
authorFlorian Meyer <florianfelix@web.de>2010-05-13 19:58:39 +0400
committerFlorian Meyer <florianfelix@web.de>2010-05-13 19:58:39 +0400
commit3db602cf06a51dee8c27e0aae642cd90987b20f0 (patch)
treec5f84e543349d1e1fcd785ebe73e3750af32adc6 /import_images_as_planes.py
parentd0cbe365ce0cf7b6043d6762d19f910d52e23c67 (diff)
-added icons
-small cleanup
Diffstat (limited to 'import_images_as_planes.py')
-rw-r--r--import_images_as_planes.py9
1 files changed, 4 insertions, 5 deletions
diff --git a/import_images_as_planes.py b/import_images_as_planes.py
index 9adace6f..94b52ac8 100644
--- a/import_images_as_planes.py
+++ b/import_images_as_planes.py
@@ -442,18 +442,17 @@ class ImportImagesAsPlanes(bpy.types.Operator):
props = self.properties
layout = self.layout
box = layout.box()
- box.label('Filter:')
+ box.label('Filter:', icon='FILTER')
box.prop(props, 'fromDirectory')
- box.prop(props, 'extension')
- #col.label('Material mappings')
+ box.prop(props, 'extension', icon='FILE_IMAGE')
box = layout.box()
- box.label('Material mappings:')
+ box.label('Material mappings:', icon='MATERIAL')
box.prop(props, 'shadeless')
box.prop(props, 'transp')
box.prop(props, 'premultiply')
box.prop(props, 'transp_method', expand=True)
box = layout.box()
- box.label('Plane dimensions:')
+ box.label('Plane dimensions:', icon='ARROW_LEFTRIGHT')
box.prop(props, 'useDim')
box.prop(props, 'factor', expand=True)