diff --git a/src/View/CheckList/Window.py b/src/View/CheckList/Window.py index 85244d4864cf0a7897e462abe7d2e7ee7653c882..88b0294d388b71ccf1ad47065207458b8c70a525 100644 --- a/src/View/CheckList/Window.py +++ b/src/View/CheckList/Window.py @@ -110,7 +110,7 @@ class CheckListWindow(ASubMainWindow, ListedSubWindow): def _compute_status_label(self): ok, warning, error = self._compute_status() return (f"<font color=\"Green\">Ok: {ok} </font> |" + - f"<font color=\"Yellow\">Warning: {warning} </font> |" + + f"<font color=\"Orange\">Warning: {warning} </font> |" + f"<font color=\"Red\">Error: {error}</font>") def setup_statusbar(self): diff --git a/src/View/CheckList/Worker.py b/src/View/CheckList/Worker.py index dfde09310e3f40a60262219c1263394c938d240a..9137d26bf449b690478ee3a117b3b1b0cfcfe24c 100644 --- a/src/View/CheckList/Worker.py +++ b/src/View/CheckList/Worker.py @@ -24,7 +24,7 @@ class Worker(QObject): for checker in self._checker_list: self.signalStatus.emit(checker.name) - time.sleep(1) + # time.sleep(1) checker.run(self._study) self.signalStatus.emit("progress")