(self, event)
| 36 | self.flash_timer = QTimer(self, timeout=self.flash_icon) |
| 37 | |
| 38 | def closeEvent(self, event): |
| 39 | self.stop_flash() |
| 40 | self.tray_icon.hide() |
| 41 | super(Window, self).closeEvent(event) |
| 42 | |
| 43 | def start_flash(self): |
| 44 | """开始闪烁""" |
nothing calls this directly
no test coverage detected