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.
1 parent 08967ac commit f900728Copy full SHA for f900728
src/qt/bitcoingui.cpp
@@ -435,6 +435,7 @@ void BitcoinGUI::createActions()
435
m_close_wallet_action->setStatusTip(tr("Close wallet"));
436
437
m_create_wallet_action = new QAction(tr("Create Wallet..."), this);
438
+ m_create_wallet_action->setEnabled(false);
439
m_create_wallet_action->setStatusTip(tr("Create a new wallet"));
440
441
showHelpMessageAction = new QAction(tr("&Command-line options"), this);
@@ -858,6 +859,7 @@ void BitcoinGUI::setWalletController(WalletController* wallet_controller)
858
859
860
m_wallet_controller = wallet_controller;
861
862
+ m_create_wallet_action->setEnabled(true);
863
m_open_wallet_action->setEnabled(true);
864
m_open_wallet_action->setMenu(m_open_wallet_menu);
865
0 commit comments