From 8d7eeece301089dd1f1fe12a6b1460c94cfec319 Mon Sep 17 00:00:00 2001 From: beville Date: Mon, 4 Feb 2013 05:08:22 +0000 Subject: [PATCH] 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 --- autotagmatchwindow.py | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/autotagmatchwindow.py b/autotagmatchwindow.py index 15c6aa0..b929617 100644 --- a/autotagmatchwindow.py +++ b/autotagmatchwindow.py @@ -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()