Draft: disabled moving siblings when moving an object

This commit is contained in:
Yorik van Havre 2015-12-19 22:32:56 -02:00
parent d6920a07c3
commit 5fa85ad31b

View File

@ -565,7 +565,8 @@ def getMovableChildren(objectslist,recursive=True):
if hasattr(obj,"Proxy"):
if obj.Proxy:
if hasattr(obj.Proxy,"getSiblings") and not(getType(obj) in ["Window"]):
children.extend(obj.Proxy.getSiblings(obj))
#children.extend(obj.Proxy.getSiblings(obj))
pass
for child in children:
if hasattr(child,"MoveWithHost"):
if child.MoveWithHost: