mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-07-01 19:21:28 +02:00
Make tabs toolbar no longer have a context menu
Adds a contextMenuPolicy of Qt::PreventContextMenu to prevent the tabs toolbar from showing a context menu that allows it to be hidden.
This commit is contained in:
@ -454,6 +454,7 @@ void BitcoinGUI::createToolBars()
|
|||||||
if(walletFrame)
|
if(walletFrame)
|
||||||
{
|
{
|
||||||
QToolBar *toolbar = addToolBar(tr("Tabs toolbar"));
|
QToolBar *toolbar = addToolBar(tr("Tabs toolbar"));
|
||||||
|
toolbar->setContextMenuPolicy(Qt::PreventContextMenu);
|
||||||
toolbar->setMovable(false);
|
toolbar->setMovable(false);
|
||||||
toolbar->setToolButtonStyle(Qt::ToolButtonTextBesideIcon);
|
toolbar->setToolButtonStyle(Qt::ToolButtonTextBesideIcon);
|
||||||
toolbar->addAction(overviewAction);
|
toolbar->addAction(overviewAction);
|
||||||
|
Reference in New Issue
Block a user