Fixed a bug with getSelectedAsList

This commit is contained in:
Gyedo Jeon 2008-11-24 22:53:27 +00:00
parent c7f9706553
commit b4785c9485

View File

@ -139,7 +139,7 @@ class SelectedNodePaths(DirectObject):
connectivity is performed on the members of the list
"""
#return self.selectedDict.values()[:]
return self.selectedList # [gjeon] now return the list with selected order
return self.selectedList[:] # [gjeon] now return the list with selected order
def __getitem__(self, index):
return self.getSelectedAsList()[index]