mirror of
https://github.com/freedomofpress/dangerzone.git
synced 2025-04-30 18:52:38 +02:00
Adjust window / settings widget proportions to fit
With the added new widgets not all widgets in the settings fit perfectly.
This commit is contained in:
parent
994e70c17a
commit
8a31b085ee
1 changed files with 1 additions and 2 deletions
|
@ -29,7 +29,7 @@ class MainWindow(QtWidgets.QMainWindow):
|
||||||
self.setWindowIcon(self.dangerzone.get_window_icon())
|
self.setWindowIcon(self.dangerzone.get_window_icon())
|
||||||
|
|
||||||
self.setMinimumWidth(600)
|
self.setMinimumWidth(600)
|
||||||
self.setMinimumHeight(400)
|
self.setMinimumHeight(430)
|
||||||
|
|
||||||
# Header
|
# Header
|
||||||
logo = QtWidgets.QLabel()
|
logo = QtWidgets.QLabel()
|
||||||
|
@ -412,7 +412,6 @@ class SettingsWidget(QtWidgets.QWidget):
|
||||||
|
|
||||||
# Layout
|
# Layout
|
||||||
layout = QtWidgets.QVBoxLayout()
|
layout = QtWidgets.QVBoxLayout()
|
||||||
layout.addSpacing(20)
|
|
||||||
layout.addWidget(self.docs_selected_label)
|
layout.addWidget(self.docs_selected_label)
|
||||||
layout.addLayout(self.safe_extension_layout)
|
layout.addLayout(self.safe_extension_layout)
|
||||||
layout.addLayout(save_group_box_layout)
|
layout.addLayout(save_group_box_layout)
|
||||||
|
|
Loading…
Reference in a new issue