Skip to content

Commit

Permalink
add multisig to toolbar
Browse files Browse the repository at this point in the history
  • Loading branch information
backpacker69 committed Mar 22, 2019
1 parent 3aa949f commit 5a8849b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/qt/bitcoingui.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ void BitcoinGUI::createActions()
multisigAction->setStatusTip(tr("UI to create multisig addresses"));
multisigAction->setToolTip(multisigAction->statusTip());
multisigAction->setCheckable(true);
multisigAction->setShortcut(QKeySequence(Qt::ALT + Qt::Key_7));
multisigAction->setShortcut(QKeySequence(Qt::ALT + Qt::Key_6));
tabGroup->addAction(multisigAction);

#ifdef ENABLE_WALLET
Expand Down Expand Up @@ -459,7 +459,6 @@ void BitcoinGUI::createMenuBar()
file->addAction(backupWalletAction);
file->addAction(signMessageAction);
file->addAction(verifyMessageAction);
file->addAction(multisigAction);
file->addSeparator();
file->addAction(usedSendingAddressesAction);
file->addAction(usedReceivingAddressesAction);
Expand Down Expand Up @@ -509,6 +508,7 @@ void BitcoinGUI::createToolBars()
toolbar->addAction(receiveCoinsAction);
toolbar->addAction(historyAction);
toolbar->addAction(mintingAction);
toolbar->addAction(multisigAction);
overviewAction->setChecked(true);
}
}
Expand Down

0 comments on commit 5a8849b

Please sign in to comment.