mirror of https://github.com/borgbase/vorta
Force fusion style on Linux (#307)
Fixes some layout issues that occur with other Qt designs.
This commit is contained in:
parent
4cdc76680c
commit
deb1e32ea8
|
@ -40,6 +40,10 @@ def main():
|
|||
app = VortaApp(sys.argv, single_app=True)
|
||||
app.updater = get_updater()
|
||||
|
||||
# Force fusion style on Linux
|
||||
if sys.platform.startswith('linux'):
|
||||
app.setStyle('Fusion')
|
||||
|
||||
sys.exit(app.exec_())
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue