diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2019-07-04 21:17:09 +0100 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2019-07-04 21:17:09 +0100 |
commit | c94d19d8a34e5f491a2534305352163f323078aa (patch) | |
tree | 92087e60e4d8ce5c816cb804560eb6d57a9fb43b /src/frontend | |
parent | 41042618cfcecab36abe16108a3685b0dfc2f694 (diff) |
sisyphus-gui : set focus on inputBox by default
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 f643c9b..b391414 100644 --- a/src/frontend/gui/sisyphus-gui.py +++ b/src/frontend/gui/sisyphus-gui.py @@ -518,4 +518,5 @@ if __name__ == '__main__': app = QtWidgets.QApplication(sys.argv) app.setStyle('Breeze') window = Sisyphus() + window.inputBox.setFocus() sys.exit(app.exec_()) |