Don't reload when refreshed

Lists should not be reloaded when they are refreshed.  Instead, use
everything already in memory.
This commit is contained in:
Bryan Schumaker 2010-11-09 13:57:24 -05:00
parent ef9c53f930
commit bafa6e7e8a
1 changed files with 2 additions and 1 deletions

View File

@ -72,7 +72,8 @@ class Library(Collection):
def refresh(self, arg):
self.clear()
self.populate()
Collection.populate(self, library.walk)
#self.populate()
def reset(self):
collection.reset()