diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2019-07-04 21:04:15 +0100 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2019-07-04 21:04:15 +0100 |
commit | 41042618cfcecab36abe16108a3685b0dfc2f694 (patch) | |
tree | 4f5fbf49c179329c26b01ce758b0292aa5788d7d /src/frontend | |
parent | 0832c95f1d2eb366cf68941a12ac79745094dd2e (diff) |
libsisyphus : fix a race condition && sisyphus-gui : use breeze style if available
Diffstat (limited to 'src/frontend')
-rw-r--r-- | src/frontend/gui/sisyphus-gui.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/frontend/gui/sisyphus-gui.py b/src/frontend/gui/sisyphus-gui.py index 962abf8..f643c9b 100644 --- a/src/frontend/gui/sisyphus-gui.py +++ b/src/frontend/gui/sisyphus-gui.py @@ -516,5 +516,6 @@ class MainWorker(QtCore.QObject): # launch application if __name__ == '__main__': app = QtWidgets.QApplication(sys.argv) + app.setStyle('Breeze') window = Sisyphus() sys.exit(app.exec_()) |