@@ -216,7 +216,8 @@ void BitcoinGUI::createActions()
216216 addressBookAction->setShortcut (QKeySequence (Qt::ALT + Qt::Key_6));
217217 tabGroup->addAction (addressBookAction);
218218
219- multisigAction = new QAction (QIcon (" :/icons/multisig" ), tr (" Multisig" ), this );
219+ multisigAction = new QAction (QIcon (" :/icons/multisig" ), tr (" &Multisig" ), this );
220+ multisigAction->setStatusTip (tr (" UI to create multisig addresses" ));
220221 tabGroup->addAction (multisigAction);
221222
222223 connect (overviewAction, SIGNAL (triggered ()), this , SLOT (showNormalIfMinimized ()));
@@ -254,13 +255,13 @@ void BitcoinGUI::createActions()
254255 encryptWalletAction->setStatusTip (tr (" Encrypt the private keys that belong to your wallet" ));
255256 encryptWalletAction->setCheckable (true );
256257 decryptForMintingAction = new QAction (QIcon (" :/icons/lock_closed" ), tr (" &Decrypt Wallet for Minting Only" ), this );
257- decryptForMintingAction->setToolTip (tr (" Decrypt wallet only for minting. Sending coins will still require the password." ));
258+ decryptForMintingAction->setStatusTip (tr (" Decrypt wallet only for minting. Sending coins will still require the password." ));
258259 decryptForMintingAction->setCheckable (true );
259260 backupWalletAction = new QAction (QIcon (" :/icons/filesave" ), tr (" &Backup Wallet..." ), this );
260261 backupWalletAction->setStatusTip (tr (" Backup wallet to another location" ));
261262 changePassphraseAction = new QAction (QIcon (" :/icons/key" ), tr (" &Change Passphrase..." ), this );
262263 changePassphraseAction->setStatusTip (tr (" Change the passphrase used for wallet encryption" ));
263- signMessageAction = new QAction (QIcon (" :/icons/sign" ), tr (" Sign & message..." ), this );
264+ signMessageAction = new QAction (QIcon (" :/icons/sign" ), tr (" & Sign message..." ), this );
264265 signMessageAction->setStatusTip (tr (" Sign messages with your Peercoin addresses to prove you own them" ));
265266 verifyMessageAction = new QAction (QIcon (" :/icons/verify" ), tr (" &Verify message..." ), this );
266267 verifyMessageAction->setStatusTip (tr (" Verify messages to ensure they were signed with specified Peercoin addresses" ));
0 commit comments