blender/source
Campbell Barton 163f6055d2 bugfix [#23182] Using self.report() inside poll() gives crash
poll() function is now a static method in python, this is more correct, matching C where the operator is not created to run poll.


    def poll(self, context): ...

is now...

    @staticmethod
    def poll(context): ...

Pythons way of doing static methods is a bit odd but cant be helped :|

This does make subclassing poll functions with COMPAT_ENGINES break, so had to modify quite a few scripts for this.
2010-08-05 16:05:30 +00:00
..
blender bugfix [#23182] Using self.report() inside poll() gives crash 2010-08-05 16:05:30 +00:00
blenderplayer build options to disable image formats WITH_CINEON, WITH_HDR. 2010-08-03 11:25:34 +00:00
creator Fix #23099: cmake/mac did not copy the scripts/ directory correct for install. 2010-08-04 16:05:19 +00:00
darwin Fix make/darwin build, was not updated for moved bin/ directory. 2010-07-29 13:04:20 +00:00
gameengine bugfix [#23148] "ImportError: __import__ not found" on changing Render FPS 2010-08-05 03:25:45 +00:00
icons missed a file in previous crosscompiling related commits 2010-02-18 06:53:10 +00:00
kernel remove commented scons lines from cmake files, fixed use of pointer poll function for ID drobdowns (currently unused) 2010-08-03 08:12:55 +00:00
CMakeLists.txt correct fsf address 2010-02-12 13:34:04 +00:00
Makefile == Makefiles == 2010-08-04 08:42:18 +00:00
SConscript this restores building on mingw with Collada support, also it restores cross compiling, thanks to Sergey Sharybin for the patch. Note that the icons for linux cross might not be committed here, if not i'll add them in another commit 2010-02-01 18:39:41 +00:00