We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1ebf640 + d65fafc commit c8e65adCopy full SHA for c8e65ad
src/qt/bitcoingui.cpp
@@ -341,6 +341,7 @@ void BitcoinGUI::createActions()
341
m_close_wallet_action->setStatusTip(tr("Close wallet"));
342
343
m_create_wallet_action = new QAction(tr("Create Wallet..."), this);
344
+ m_create_wallet_action->setEnabled(false);
345
m_create_wallet_action->setStatusTip(tr("Create a new wallet"));
346
347
showHelpMessageAction = new QAction(tr("&Command-line options"), this);
@@ -618,6 +619,7 @@ void BitcoinGUI::setWalletController(WalletController* wallet_controller)
618
619
620
m_wallet_controller = wallet_controller;
621
622
+ m_create_wallet_action->setEnabled(true);
623
m_open_wallet_action->setEnabled(true);
624
m_open_wallet_action->setMenu(m_open_wallet_menu);
625
0 commit comments