Skip to content
Snippets Groups Projects
Commit a04af35e authored by meta-androcto's avatar meta-androcto
Browse files

Fix: T49025 ivy gen invoke thanks @batfinger

parent 1f3ec22d
Branches
Tags
No related merge requests found
...@@ -537,6 +537,10 @@ class IvyGen(bpy.types.Operator): ...@@ -537,6 +537,10 @@ class IvyGen(bpy.types.Operator):
return ((ob is not None) and return ((ob is not None) and
(ob.type == 'MESH') and (ob.type == 'MESH') and
(context.mode == 'OBJECT')) (context.mode == 'OBJECT'))
def invoke(self, context, event):
self.updateIvy = True
return self.execute(context)
def execute(self, context): def execute(self, context):
if not self.updateIvy: if not self.updateIvy:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment