No need to pre-fetch now, since the cover widget manages this itself

git-svn-id: http://comictagger.googlecode.com/svn/trunk@400 6c5673fe-1810-88d6-992b-cd32ca31540c
This commit is contained in:
beville 2013-02-04 05:08:22 +00:00
parent 3b64e1a3ec
commit 8d7eeece30

View File

@ -76,16 +76,6 @@ class AutoTagMatchWindow(QtGui.QDialog):
#self.buttonBox.button(QtGui.QDialogButtonBox.Ok).setText("Accept")
self.skipButton.setText(self.tr("Skip"))
# pre-fetch the alternate cover URL lists
QtGui.QApplication.setOverrideCursor(QtGui.QCursor(QtCore.Qt.WaitCursor))
for match in self.current_match_set.matches:
comicVine = ComicVineTalker()
try:
comicVine.fetchAlternateCoverURLs( match['issue_id'] )
except:
pass
QtGui.QApplication.restoreOverrideCursor()
self.setCoverImage()
self.populateTable()
self.twList.resizeColumnsToContents()