ExplodeArray: fix no unhide array when deleting children
This commit is contained in:
parent
0bb50c0d8b
commit
8161252589
|
@ -245,6 +245,9 @@ class ViewProviderLatticeFeature:
|
||||||
|
|
||||||
def onDelete(self, feature, subelements): # subelements is a tuple of strings
|
def onDelete(self, feature, subelements): # subelements is a tuple of strings
|
||||||
try:
|
try:
|
||||||
|
if hasattr(self.ViewObject,"DontUnhideOnDelete") and self.ViewObject.DontUnhideOnDelete:
|
||||||
|
pass
|
||||||
|
else:
|
||||||
children = self.claimChildren()
|
children = self.claimChildren()
|
||||||
if children and len(children) > 0:
|
if children and len(children) > 0:
|
||||||
marker = latticeMarkers
|
marker = latticeMarkers
|
||||||
|
|
Loading…
Reference in New Issue
Block a user