Skip to content

Commit

Permalink
Change spacer minimum height hint
Browse files Browse the repository at this point in the history
This hopefully fixes the lock fall of the page issue (again).
  • Loading branch information
jamescowens committed Aug 5, 2019
1 parent f74aeb1 commit 63ed361
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/qt/bitcoingui.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -464,7 +464,8 @@ void BitcoinGUI::createToolBars()
toolbar->addAction(lockWalletAction);
QWidget* webSpacer = new QWidget();

webSpacer->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding);
webSpacer->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::MinimumExpanding);
webSpacer->setMinimumHeight(1);
webSpacer->setMaximumHeight(10);
toolbar->addWidget(webSpacer);
webSpacer->setObjectName("WebSpacer");
Expand Down

0 comments on commit 63ed361

Please sign in to comment.