Changeset View
Changeset View
Standalone View
Standalone View
io_import_images_as_planes.py
| Context not available. | |||||
| # And now update space (file select window), if possible. | # And now update space (file select window), if possible. | ||||
| space = bpy.context.space_data | space = bpy.context.space_data | ||||
| # XXX Can't use direct op comparison, these are not the same objects! | # XXX Can't use direct op comparison, these are not the same objects! | ||||
| if (space.type != 'FILE_BROWSER' or space.operator.bl_rna.identifier != self.bl_rna.identifier): | if space.type != 'FILE_BROWSER' or space.operator.bl_rna.identifier != self.bl_rna.identifier: | ||||
| return | return | ||||
| space.params.use_filter_image = self.filter_image | space.params.use_filter_image = self.filter_image | ||||
| space.params.use_filter_movie = self.filter_movie | space.params.use_filter_movie = self.filter_movie | ||||
| Context not available. | |||||