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:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2009-09-18 17:02:20 +0400
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2009-09-18 17:02:20 +0400
commit26836bf44f39d4c83d7b4de94dd742c84cf82eda (patch)
treefcada9d85208c899c4aa733333bc97af25416a97 /release
parent854ea35a2498cb35e7cce26e396fab775692196e (diff)
2.5: Python operators now have a working poll() function,
solved by wrapping all polling in WM_operator_poll and adding a special callback for python.
Diffstat (limited to 'release')
-rw-r--r--release/io/export_ply.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/release/io/export_ply.py b/release/io/export_ply.py
index 491ffe6b9df..b8fbe56f01c 100644
--- a/release/io/export_ply.py
+++ b/release/io/export_ply.py
@@ -250,7 +250,6 @@ class EXPORT_OT_ply(bpy.types.Operator):
]
def poll(self, context):
- print("Poll")
return context.active_object != None
def execute(self, context):