From b71bfd9eef8b0017cef3c05361c02ddbd837e6ac Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Fri, 5 Jul 2024 18:25:16 +0000 Subject: [PATCH] GUI/OptionsDialog: Prefer to stretch actual options area rather than waste space --- src/qt/optionsdialog.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/qt/optionsdialog.cpp b/src/qt/optionsdialog.cpp index e31542961c..c79caf9b6c 100644 --- a/src/qt/optionsdialog.cpp +++ b/src/qt/optionsdialog.cpp @@ -34,6 +34,8 @@ OptionsDialog::OptionsDialog(QWidget *parent) : ui->setupUi(this); GUIUtil::restoreWindowGeometry("nOptionsDialogWindow", this->size(), this); + ui->verticalLayout->setStretchFactor(ui->tabWidget, 1); + /* Main elements init */ ui->databaseCache->setMinimum(nMinDbCache); ui->databaseCache->setMaximum(nMaxDbCache);