(self, event)
| 28 | self.resize(800, 600) |
| 29 | |
| 30 | def closeEvent(self, event): |
| 31 | if self._thread: |
| 32 | self._thread.stop() |
| 33 | self._thread.quit() |
| 34 | self._thread.wait(100) |
| 35 | del self._thread |
| 36 | super().closeEvent(event) |
| 37 | |
| 38 | def showEvent(self, event): |
| 39 | super().showEvent(event) |