Merge branch 'master' of ssh://git.code.sf.net/p/free-cad/code

This commit is contained in:
wmayer 2015-03-21 19:56:00 +01:00
commit f87fbe7e2a

View File

@ -584,8 +584,8 @@ def getMovableChildren(objectslist,recursive=False):
recursive is True, all descendents are considered, otherwise only direct children.'''
added = []
for obj in objectslist:
if getType(obj) != "Clone":
# clones should never move their children
if not (getType(obj) in ["Clone","SectionPlane"]):
# objects that should never move their children
children = obj.OutList
if hasattr(obj,"Proxy"):
if obj.Proxy: