197 @rtype tuple of (str, bool) |
197 @rtype tuple of (str, bool) |
198 """ |
198 """ |
199 self.inputGroup.show() |
199 self.inputGroup.show() |
200 self.input.setMaxLength(size) |
200 self.input.setMaxLength(size) |
201 self.input.setFocus(Qt.OtherFocusReason) |
201 self.input.setFocus(Qt.OtherFocusReason) |
|
202 |
|
203 self.resultbox.ensureCursorVisible() |
202 |
204 |
203 from PyQt5.QtCore import QEventLoop |
205 from PyQt5.QtCore import QEventLoop |
204 loop = QEventLoop(self) |
206 loop = QEventLoop(self) |
205 self.sendButton.clicked[bool].connect(loop.quit) |
207 self.sendButton.clicked[bool].connect(loop.quit) |
206 loop.exec_() |
208 loop.exec_() |