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
3 unresolved threads
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
@@ -254,7 +254,7 @@ class GPSDialog(QtWidgets.QWidget):
@@ -254,7 +254,7 @@ class GPSDialog(QtWidgets.QWidget):
bottom_layout = QtWidgets.QVBoxLayout()
bottom_layout = QtWidgets.QVBoxLayout()
bottom_layout.addLayout(button_layout)
bottom_layout.addLayout(button_layout)
self.info_text_browser.setFixedHeight(42)
self.info_text_browser.setFixedHeight(60)
bottom_layout.addWidget(self.info_text_browser)
bottom_layout.addWidget(self.info_text_browser)
main_layout.addLayout(bottom_layout)
main_layout.addLayout(bottom_layout)
Loading