SubLink: fix save-load errors

This commit is contained in:
DeepSOIC 2016-01-10 01:42:33 +03:00
parent a4a2eab2bf
commit 65da825fae

View File

@ -194,6 +194,12 @@ class LatticeSubLink:
if type(attr) is list:
self.assignProp(selfobj,"App::PropertyInteger",propname+"Count",len(attr))
def __getstate__(self):
return None
def __setstate__(self,state):
return None
class ViewProviderSubLink:
"A View Provider for the SubLink object"