发送状态信息
(self, message: str, status_type: str = "info")
| 36 | self.progress_updated.emit(message) |
| 37 | |
| 38 | def emit_status(self, message: str, status_type: str = "info"): |
| 39 | """发送状态信息""" |
| 40 | if not self.is_cancelled: |
| 41 | self.status_changed.emit(message, status_type) |
| 42 | |
| 43 | |
| 44 | class CloseIDEWorker(BaseWorker): |