summaryrefslogtreecommitdiffstats
path: root/module/gui/CaptchaDock.py
diff options
context:
space:
mode:
Diffstat (limited to 'module/gui/CaptchaDock.py')
-rw-r--r--module/gui/CaptchaDock.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/module/gui/CaptchaDock.py b/module/gui/CaptchaDock.py
index 193bac6fa..3dc9441a4 100644
--- a/module/gui/CaptchaDock.py
+++ b/module/gui/CaptchaDock.py
@@ -31,6 +31,7 @@ class CaptchaDock(QDockWidget):
self.hide()
self.processing = False
self.currentID = None
+ self.connect(self, SIGNAL("setTask"), self.setTask)
def isFree(self):
return not self.processing
@@ -54,6 +55,7 @@ class CaptchaDockWidget(QWidget):
okayButton = QPushButton("OK")
cancelButton = QPushButton("Cancel")
+ layout.addStretch()
layout.addWidget(imgLabel)
layout.addWidget(captchaInput)
layout.addWidget(okayButton)