diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2012-05-17 20:05:49 +0200 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2012-05-17 20:34:30 +0200 |
commit | 8ece75aee1c0d327148eba32b8bb64e688cddf5c (patch) | |
tree | d58c37696b8dfd55442feb9832fe90c1f87b33c1 | |
parent | 49232d1abf96f85f785e0ee95fbb79d0338855bc (diff) |
Add icon for debug window
-rw-r--r-- | doc/assets-attribution.txt | 4 | ||||
-rw-r--r-- | src/qt/bitcoin.qrc | 1 | ||||
-rw-r--r-- | src/qt/bitcoingui.cpp | 2 | ||||
-rw-r--r-- | src/qt/res/icons/debugwindow.png | bin | 0 -> 1392 bytes |
4 files changed, 6 insertions, 1 deletions
diff --git a/doc/assets-attribution.txt b/doc/assets-attribution.txt index 0b0e377065..bf3114f7b8 100644 --- a/doc/assets-attribution.txt +++ b/doc/assets-attribution.txt @@ -54,3 +54,7 @@ Designer: Crobbo (forum) Site: https://bitcointalk.org/index.php?topic=32273.0 License: Public domain +Icon: src/qt/res/icons/debugwindow.png +Designer: Based on icon from Turbomilk +Site: http://www.iconza.com/ +License: Free for commercial use diff --git a/src/qt/bitcoin.qrc b/src/qt/bitcoin.qrc index c910d5bef4..a6a2112478 100644 --- a/src/qt/bitcoin.qrc +++ b/src/qt/bitcoin.qrc @@ -39,6 +39,7 @@ <file alias="key">res/icons/key.png</file> <file alias="filesave">res/icons/filesave.png</file> <file alias="qrcode">res/icons/qrcode.png</file> + <file alias="debugwindow">res/icons/debugwindow.png</file> </qresource> <qresource prefix="/images"> <file alias="about">res/images/about.png</file> diff --git a/src/qt/bitcoingui.cpp b/src/qt/bitcoingui.cpp index 6b97d97656..c244663205 100644 --- a/src/qt/bitcoingui.cpp +++ b/src/qt/bitcoingui.cpp @@ -256,7 +256,7 @@ void BitcoinGUI::createActions() backupWalletAction->setToolTip(tr("Backup wallet to another location")); changePassphraseAction = new QAction(QIcon(":/icons/key"), tr("&Change Passphrase..."), this); changePassphraseAction->setToolTip(tr("Change the passphrase used for wallet encryption")); - openRPCConsoleAction = new QAction(tr("&Debug window"), this); + openRPCConsoleAction = new QAction(QIcon(":/icons/debugwindow"), tr("&Debug window"), this); openRPCConsoleAction->setToolTip(tr("Open debugging and diagnostic console")); verifyMessageAction = new QAction(QIcon(":/icons/transaction_0"), tr("&Verify message..."), this); verifyMessageAction->setToolTip(tr("Verify a message signature")); diff --git a/src/qt/res/icons/debugwindow.png b/src/qt/res/icons/debugwindow.png Binary files differnew file mode 100644 index 0000000000..065399afe7 --- /dev/null +++ b/src/qt/res/icons/debugwindow.png |