Skip to content

Commit

Permalink
Merge pull request bitcoin#367 from sandakersmann/develop
Browse files Browse the repository at this point in the history
Some improvements for the GUI
  • Loading branch information
peerchemist committed May 7, 2018
2 parents 6386681 + abc7694 commit c9f3eb1
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/qt/bitcoingui.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,8 @@ void BitcoinGUI::createActions()
addressBookAction->setShortcut(QKeySequence(Qt::ALT + Qt::Key_6));
tabGroup->addAction(addressBookAction);

multisigAction = new QAction(QIcon(":/icons/multisig"), tr("Multisig"), this);
multisigAction = new QAction(QIcon(":/icons/multisig"), tr("&Multisig"), this);
multisigAction->setStatusTip(tr("UI to create multisig addresses"));
tabGroup->addAction(multisigAction);

connect(overviewAction, SIGNAL(triggered()), this, SLOT(showNormalIfMinimized()));
Expand Down Expand Up @@ -254,13 +255,13 @@ void BitcoinGUI::createActions()
encryptWalletAction->setStatusTip(tr("Encrypt the private keys that belong to your wallet"));
encryptWalletAction->setCheckable(true);
decryptForMintingAction = new QAction(QIcon(":/icons/lock_closed"), tr("&Decrypt Wallet for Minting Only"), this);
decryptForMintingAction->setToolTip(tr("Decrypt wallet only for minting. Sending coins will still require the password."));
decryptForMintingAction->setStatusTip(tr("Decrypt wallet only for minting. Sending coins will still require the password."));
decryptForMintingAction->setCheckable(true);
backupWalletAction = new QAction(QIcon(":/icons/filesave"), tr("&Backup Wallet..."), this);
backupWalletAction->setStatusTip(tr("Backup wallet to another location"));
changePassphraseAction = new QAction(QIcon(":/icons/key"), tr("&Change Passphrase..."), this);
changePassphraseAction->setStatusTip(tr("Change the passphrase used for wallet encryption"));
signMessageAction = new QAction(QIcon(":/icons/sign"), tr("Sign &message..."), this);
signMessageAction = new QAction(QIcon(":/icons/sign"), tr("&Sign message..."), this);
signMessageAction->setStatusTip(tr("Sign messages with your Peercoin addresses to prove you own them"));
verifyMessageAction = new QAction(QIcon(":/icons/verify"), tr("&Verify message..."), this);
verifyMessageAction->setStatusTip(tr("Verify messages to ensure they were signed with specified Peercoin addresses"));
Expand Down

0 comments on commit c9f3eb1

Please sign in to comment.