RecomputeLocker: bugfix in restoretouched
This commit is contained in:
parent
b8c207102d
commit
c296f5a2c6
|
@ -152,7 +152,7 @@ class LatticeRecomputeLocker:
|
||||||
def restoreTouched(self, selfobj, dict):
|
def restoreTouched(self, selfobj, dict):
|
||||||
doc = selfobj.Document
|
doc = selfobj.Document
|
||||||
for docobj in doc.Objects:
|
for docobj in doc.Objects:
|
||||||
if dict[docobj.Name] != 'Touched' in docobj.State:
|
if dict[docobj.Name] != ('Touched' in docobj.State):
|
||||||
if dict[docobj.Name] == True:
|
if dict[docobj.Name] == True:
|
||||||
touch(docobj)
|
touch(docobj)
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Reference in New Issue
Block a user