diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2021-02-02 01:07:55 +0000 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2021-02-02 01:07:55 +0000 |
commit | ed3747e4ff721914d1df6b62788a91a1e8b3f741 (patch) | |
tree | 25f2987643c99657eb8f7945d1f68c19c9cfa2bf /src/frontend/gui/sisyphus-gui.py | |
parent | fb13a317b1468c6070f4c6131a6526ffbf284511 (diff) |
* better explain some used terms
* update the help menu and CLI documentation
* remove animations from setjobs module (it takes less than a second, so it's pointless)
* make some error messages less cryptic && offer help to understand them
* don't kill the graphical interface right away if there is a missmatch, display the error, offer help && and then die in 10 seconds
Diffstat (limited to 'src/frontend/gui/sisyphus-gui.py')
-rw-r--r-- | src/frontend/gui/sisyphus-gui.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/frontend/gui/sisyphus-gui.py b/src/frontend/gui/sisyphus-gui.py index 8930f6c..67d3f1f 100644 --- a/src/frontend/gui/sisyphus-gui.py +++ b/src/frontend/gui/sisyphus-gui.py @@ -384,8 +384,8 @@ class MainWorker(QtCore.QObject): def startUpdate(self): self.started.emit() sisyphus.check.update() - sisyphus.setjobs.start.__wrapped__() # undecorate - sisyphus.update.start.__wrapped__() # undecorate + sisyphus.setjobs.start() + sisyphus.update.startqt() self.finished.emit() @QtCore.pyqtSlot() |