Fixed function name

getChildren is expected in the MemoryExplorer and not getChildrenAsList
getChildren is also more convenient to the rest of the p3d source
This commit is contained in:
fireclawthefox 2017-01-26 11:26:31 +01:00 committed by rdb
parent 8696dcea2c
commit 78d14fcce3

View File

@ -284,7 +284,7 @@ class MemoryExplorerItem:
def getNumChildren(self):
return len(self.children)
def getChildrenAsList(self):
def getChildren(self):
return self.children
def getName(self):