Skip to content
Snippets Groups Projects

Fix program not fitting on low resolution screens

Merged Kien Le requested to merge bug-#180-program_does_not_fit_low_resolution_screens into master
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
+ 1
1
@@ -70,7 +70,7 @@ def main():
config.apply_config(wnd)
screen_width, screen_height = app.primaryScreen().size().toTuple()
wnd.resize(screen_width, screen_height)
wnd.resize(screen_width * (2 / 3), screen_height * (2 / 3))
wnd.show()
sys.exit(app.exec_())
Loading