Skip to content

Commit 63ed361

Browse files
committed
Change spacer minimum height hint
This hopefully fixes the lock fall of the page issue (again).
1 parent f74aeb1 commit 63ed361

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/qt/bitcoingui.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -464,7 +464,8 @@ void BitcoinGUI::createToolBars()
464464
toolbar->addAction(lockWalletAction);
465465
QWidget* webSpacer = new QWidget();
466466

467-
webSpacer->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding);
467+
webSpacer->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::MinimumExpanding);
468+
webSpacer->setMinimumHeight(1);
468469
webSpacer->setMaximumHeight(10);
469470
toolbar->addWidget(webSpacer);
470471
webSpacer->setObjectName("WebSpacer");

0 commit comments

Comments
 (0)