diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2012-05-17 11:38:08 -0700 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2012-05-17 11:38:08 -0700 |
commit | f1e7570755587e37c60cf652a398fafe40eb3008 (patch) | |
tree | fd99c1631c99ed134c79cafb3cc9bab0b16ee5d8 /src/qt/bitcoingui.cpp | |
parent | 985302c7ccec7d71d6e14a97b91b2637872a20e3 (diff) | |
parent | 8ece75aee1c0d327148eba32b8bb64e688cddf5c (diff) |
Merge pull request #1336 from laanwj/2012_05_consoleicon
Add icon for debug window
Diffstat (limited to 'src/qt/bitcoingui.cpp')
-rw-r--r-- | src/qt/bitcoingui.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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")); |