From 841a5d882f1521c935b67da597341229d30bf033 Mon Sep 17 00:00:00 2001
From: Jacques Lucke <mail@jlucke.com>
Date: Mon, 4 May 2020 15:10:11 +0200
Subject: [PATCH] Ant Landscape: Fix error in poll function

This raised an exception when I opened the search with developer
extras enabled in the user preferences.
---
 ant_landscape/ant_functions.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ant_landscape/ant_functions.py b/ant_landscape/ant_functions.py
index b4e1e1f58..3c3c2c713 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):
-- 
GitLab