Skip to content

Commit 5b8af7b

Browse files
committed
Merge #11169: [GUI] Make tabs toolbar no longer have a context menu
e254830 Make tabs toolbar no longer have a context menu (Andrew Chow) Pull request description: Adds a contextMenuPolicy of Qt::PreventContextMenu to prevent the tabs toolbar from showing a context menu that allows it to be hidden. Fixes #11168 Tree-SHA512: 8900b3c1a891ead3c9a20dc365b436fa75f97dbe0dfa7e20ee26fd9d09f3fee6eda286b0c075ed89fe1361608ecbdd87c744e37d97a3fba62493a86dedda867b
2 parents 6ca1513 + e254830 commit 5b8af7b

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/qt/bitcoingui.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -454,6 +454,7 @@ void BitcoinGUI::createToolBars()
454454
if(walletFrame)
455455
{
456456
QToolBar *toolbar = addToolBar(tr("Tabs toolbar"));
457+
toolbar->setContextMenuPolicy(Qt::PreventContextMenu);
457458
toolbar->setMovable(false);
458459
toolbar->setToolButtonStyle(Qt::ToolButtonTextBesideIcon);
459460
toolbar->addAction(overviewAction);

0 commit comments

Comments
 (0)