From 8a0d3e391303952ed91a2bd5ba98fe1128c25442 Mon Sep 17 00:00:00 2001 From: Charles Haley <> Date: Wed, 18 Aug 2010 20:06:31 +0100 Subject: [PATCH] Commit to accept Kovid's dialog changes --- src/calibre/gui2/dialogs/progress.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/calibre/gui2/dialogs/progress.py b/src/calibre/gui2/dialogs/progress.py index 79b4af5ea4..8bdeb65da3 100644 --- a/src/calibre/gui2/dialogs/progress.py +++ b/src/calibre/gui2/dialogs/progress.py @@ -83,9 +83,9 @@ class BlockingBusy(QDialog): self.font = QFont() self.font.setPointSize(self.font.pointSize() + 8) self.msg.setFont(self.font) -# self.pi = ProgressIndicator(self) -# self.pi.setDisplaySize(100) -# self._layout.addWidget(self.pi, 0, Qt.AlignHCenter) + self.pi = ProgressIndicator(self) + self.pi.setDisplaySize(100) + self._layout.addWidget(self.pi, 0, Qt.AlignHCenter) self._layout.addSpacing(15) self._layout.addWidget(self.msg, 0, Qt.AlignHCenter) self.start() @@ -93,11 +93,11 @@ class BlockingBusy(QDialog): self.resize(self.sizeHint()) def start(self): -# self.pi.startAnimation() + self.pi.startAnimation() pass def stop(self): -# self.pi.stopAnimation() + self.pi.stopAnimation() pass def accept(self):