From a04af35e720b10c776f2e0ea94a09c08cd14a842 Mon Sep 17 00:00:00 2001 From: meta-androcto <meta.androcto1@gmail.com> Date: Fri, 12 Aug 2016 10:54:15 +1000 Subject: [PATCH] Fix: T49025 ivy gen invoke thanks @batfinger --- add_curve_ivygen.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/add_curve_ivygen.py b/add_curve_ivygen.py index ac457172a..66ca8c450 100644 --- a/add_curve_ivygen.py +++ b/add_curve_ivygen.py @@ -537,6 +537,10 @@ class IvyGen(bpy.types.Operator): return ((ob is not None) and (ob.type == 'MESH') and (context.mode == 'OBJECT')) + + def invoke(self, context, event): + self.updateIvy = True + return self.execute(context) def execute(self, context): if not self.updateIvy: -- GitLab