From 34f21054996eb688b9f0702449aef0738697ec85 Mon Sep 17 00:00:00 2001 From: Markus Lampert Date: Sat, 31 Dec 2016 14:59:07 -0800 Subject: [PATCH] Fixed edit dialog initialisation. --- src/Mod/Path/PathScripts/PathDressupHoldingTags.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Mod/Path/PathScripts/PathDressupHoldingTags.py b/src/Mod/Path/PathScripts/PathDressupHoldingTags.py index aa12276c8..5c3ab7f9e 100644 --- a/src/Mod/Path/PathScripts/PathDressupHoldingTags.py +++ b/src/Mod/Path/PathScripts/PathDressupHoldingTags.py @@ -723,9 +723,9 @@ class ObjectDressup: self.execute(obj) def getTags(self, obj): - if hasattr(self, 'tags'): - return self.tags - return self.setup(obj).generateTags(obj, 4) + if not hasattr(self, 'tags'): + self.execute(obj) + return self.tags def setup(self, obj): if True or not hasattr(self, "pathData") or not self.pathData: