Fixed edit dialog initialisation.

This commit is contained in:
Markus Lampert 2016-12-31 14:59:07 -08:00
parent 9bf58b1c94
commit 34f2105499

View File

@ -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: