(self, error_msg)
| 927 | self.bar_progress.setValue(100) |
| 928 | |
| 929 | def on_scan_error(self, error_msg): |
| 930 | self.setWarninginfo(f"扫描出错:{error_msg}") |
| 931 | |
| 932 | def toggle_select_all(self, state): |
| 933 | check_state = Qt.Checked if state == Qt.Checked else Qt.Unchecked |
nothing calls this directly
no test coverage detected