From 8a31b085ee3d446b5358ba08c742ab67a4dfc15a Mon Sep 17 00:00:00 2001 From: deeplow Date: Thu, 24 Nov 2022 09:49:13 +0000 Subject: [PATCH] Adjust window / settings widget proportions to fit With the added new widgets not all widgets in the settings fit perfectly. --- dangerzone/gui/main_window.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/dangerzone/gui/main_window.py b/dangerzone/gui/main_window.py index b9e9308..2b5ca51 100644 --- a/dangerzone/gui/main_window.py +++ b/dangerzone/gui/main_window.py @@ -29,7 +29,7 @@ class MainWindow(QtWidgets.QMainWindow): self.setWindowIcon(self.dangerzone.get_window_icon()) self.setMinimumWidth(600) - self.setMinimumHeight(400) + self.setMinimumHeight(430) # Header logo = QtWidgets.QLabel() @@ -412,7 +412,6 @@ class SettingsWidget(QtWidgets.QWidget): # Layout layout = QtWidgets.QVBoxLayout() - layout.addSpacing(20) layout.addWidget(self.docs_selected_label) layout.addLayout(self.safe_extension_layout) layout.addLayout(save_group_box_layout)