Skip to content

Commit

Permalink
Merge pull request #448 from captainbuckkets/develop
Browse files Browse the repository at this point in the history
Fixing QMenu Icons
  • Loading branch information
peerchemist committed Feb 19, 2019
2 parents fc26f0c + cb1a7ff commit e8f0dc4
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/qt/bitcoingui.cpp
Expand Up @@ -253,7 +253,7 @@ void BitcoinGUI::createActions()
encryptWalletAction = new QAction(QIcon(":/icons/lock_closed"), tr("&Encrypt Wallet..."), this);
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 = new QAction(QIcon(":/icons/lock_open"), tr("&Decrypt Wallet for Minting Only"), this);
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);
Expand Down
Binary file modified src/qt/res/icons/filesave.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit e8f0dc4

Please sign in to comment.