CheckList: Minor change.

mesh
Pierre-Antoine Rouby 2023-06-16 16:18:08 +02:00
parent 48c799c00a
commit acaa369e77
2 changed files with 2 additions and 2 deletions

View File

@ -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):

View File

@ -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")