Browse Source

Fixed function name

getChildren is expected in the MemoryExplorer and not getChildrenAsList
getChildren is also more convenient to the rest of the p3d source
fireclawthefox 9 years ago
parent
commit
78d14fcce3
1 changed files with 1 additions and 1 deletions
  1. 1 1
      direct/src/tkwidgets/MemoryExplorer.py

+ 1 - 1
direct/src/tkwidgets/MemoryExplorer.py

@@ -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):