This repository has been archived on 2023-10-09. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
blender-archive/release/scripts/io/netrender
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
..
2010-07-31 19:23:22 +00:00
2010-02-12 13:34:04 +00:00
2010-08-02 02:55:12 +00:00
2010-07-17 18:40:00 +00:00
2010-06-20 20:33:59 +00:00
2010-05-02 21:34:08 +00:00
2010-04-28 01:54:12 +00:00
2010-08-01 21:29:50 +00:00
2010-07-17 18:40:00 +00:00
2010-08-02 02:55:12 +00:00