diff --git a/src/qt/bitcoingui.cpp b/src/qt/bitcoingui.cpp index 272d999..3b724ea 100644 --- a/src/qt/bitcoingui.cpp +++ b/src/qt/bitcoingui.cpp @@ -260,7 +260,7 @@ void BitcoinGUI::createActions() connect(verifyMessageAction, SIGNAL(triggered()), this, SLOT(gotoVerifyMessageTab())); #ifdef USE_QRCODE - printPaperWalletAction = new QAction(QIcon(":/icons/key"), tr("&Print paper wallet..."), this); + printPaperWalletAction = new QAction(QIcon(":/icons/cash"), tr("&Print paper wallet..."), this); printPaperWalletAction->setIconVisibleInMenu(true); printPaperWalletAction->setStatusTip(tr("Generate new address and print")); connect(printPaperWalletAction, SIGNAL(triggered()), walletFrame, SLOT(printPaperWallet())); diff --git a/src/qt/paperwallet.qrc b/src/qt/paperwallet.qrc index 5a12a09..4da32f3 100644 --- a/src/qt/paperwallet.qrc +++ b/src/qt/paperwallet.qrc @@ -2,4 +2,8 @@ res/html/paperwallet.html + + res/icons/cash.png + res/icons/cash_print.png + diff --git a/src/qt/res/html/paperwallet.html b/src/qt/res/html/paperwallet.html index ec6a7fe..906debe 100644 --- a/src/qt/res/html/paperwallet.html +++ b/src/qt/res/html/paperwallet.html @@ -55,7 +55,7 @@
- +
diff --git a/src/qt/res/icons/cash.png b/src/qt/res/icons/cash.png new file mode 100644 index 0000000..9daf5f0 Binary files /dev/null and b/src/qt/res/icons/cash.png differ diff --git a/src/qt/res/icons/cash_print.png b/src/qt/res/icons/cash_print.png new file mode 100644 index 0000000..4063cd7 Binary files /dev/null and b/src/qt/res/icons/cash_print.png differ