Fixed edit dialog initialisation.

This commit is contained in:
Markus Lampert
2017-01-02 17:34:36 -08:00
parent 9bf58b1c94
commit 34f2105499
@@ -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: