Main chunk loading timer can now idle again.

ChunkLoader.next now reraises StopIteration to signal caller that all chunks are loaded.
This commit is contained in:
David Vierra 2015-05-31 18:49:32 -10:00
parent b482e8d952
commit 8500d6a2f0

View File

@ -143,7 +143,7 @@ class ChunkLoader(QtCore.QObject):
return self.chunkWorker.next()
except StopIteration:
self.chunkWorker = None
raise
def _loadChunks(self):
"""