[Bf-extensions-cvs] [841a5d88] master: Ant Landscape: Fix error in poll function

Jacques Lucke noreply at git.blender.org
Mon May 4 15:10:32 CEST 2020


Commit: 841a5d882f1521c935b67da597341229d30bf033
Author: Jacques Lucke
Date:   Mon May 4 15:10:11 2020 +0200
Branches: master
https://developer.blender.org/rBA841a5d882f1521c935b67da597341229d30bf033

Ant Landscape: Fix error in poll function

This raised an exception when I opened the search with developer
extras enabled in the user preferences.

===================================================================

M	ant_landscape/ant_functions.py

===================================================================

diff --git a/ant_landscape/ant_functions.py b/ant_landscape/ant_functions.py
index b4e1e1f5..3c3c2c71 100644
--- a/ant_landscape/ant_functions.py
+++ b/ant_landscape/ant_functions.py
@@ -137,7 +137,7 @@ class AntLandscapeRefresh(bpy.types.Operator):
     @classmethod
     def poll(cls, context):
         ob = bpy.context.active_object
-        return (ob.ant_landscape and not ob.ant_landscape['sphere_mesh'])
+        return (ob.ant_landscape and not ob.ant_landscape.sphere_mesh)
 
 
     def execute(self, context):



More information about the Bf-extensions-cvs mailing list