From ee6a05deaecd92a6450f8a9eb93a4c9b6d29fac9 Mon Sep 17 00:00:00 2001 From: "beville@gmail.com" Date: Mon, 4 Feb 2013 19:53:03 +0000 Subject: [PATCH] UI tweaks git-svn-id: http://comictagger.googlecode.com/svn/trunk@410 6c5673fe-1810-88d6-992b-cd32ca31540c --- autotagmatchwindow.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/autotagmatchwindow.py b/autotagmatchwindow.py index b929617..abeb8c7 100644 --- a/autotagmatchwindow.py +++ b/autotagmatchwindow.py @@ -64,7 +64,6 @@ class AutoTagMatchWindow(QtGui.QDialog): self.twList.cellDoubleClicked.connect(self.cellDoubleClicked) self.skipButton.clicked.connect(self.skipToNext) - self.show() self.updateData() def updateData( self): @@ -82,7 +81,7 @@ class AutoTagMatchWindow(QtGui.QDialog): self.twList.selectRow( 0 ) path = self.current_match_set.ca.path - self.setWindowTitle( u"Select correct match ({0} of {1}): {2}".format( + self.setWindowTitle( u"Select correct match or skip ({0} of {1}): {2}".format( self.current_match_set_idx+1, len( self.match_set_list ), os.path.split(path)[1] ))