Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2009-12-25 00:17:14 +0300
committerCampbell Barton <ideasman42@gmail.com>2009-12-25 00:17:14 +0300
commit5f4e24d5990a7ecd6198ee394da8b7c07277cd91 (patch)
tree9a1909d90276f0243d50c6624da43c794cc52dad /release/scripts/io/export_ply.py
parent4b8bc301c62784d111f2cffcbc35cf9c6189e37b (diff)
operator draw function working again. needed to add layout to the operator to give access to "self.layout" - like panels, headers and manu's have
Diffstat (limited to 'release/scripts/io/export_ply.py')
-rw-r--r--release/scripts/io/export_ply.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/scripts/io/export_ply.py b/release/scripts/io/export_ply.py
index 301fb4c5fe8..f27b76d2cbe 100644
--- a/release/scripts/io/export_ply.py
+++ b/release/scripts/io/export_ply.py
@@ -302,7 +302,7 @@ class ExportPLY(bpy.types.Operator):
def invoke(self, context, event):
wm = context.manager
wm.add_fileselect(self)
- return ('RUNNING_MODAL',)
+ return {'RUNNING_MODAL'}
def draw(self, context):
layout = self.layout