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 78b445793a
commit 8328a83dcd

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()