diff options
| author | Philip Kaufmann <[email protected]> | 2013-04-01 15:19:40 +0200 |
|---|---|---|
| committer | Philip Kaufmann <[email protected]> | 2013-04-01 15:19:40 +0200 |
| commit | b2bf46d35ed98c7e5c04ac3093f7f6eb1d6c779d (patch) | |
| tree | c4ef683147acdc38269ae4281bf33c14a60bcfdd /src/qt | |
| parent | Merge pull request #2433 from laanwj/2013_03_removetransactioncount (diff) | |
| download | discoin-b2bf46d35ed98c7e5c04ac3093f7f6eb1d6c779d.tar.xz discoin-b2bf46d35ed98c7e5c04ac3093f7f6eb1d6c779d.zip | |
Bitcoin-Qt: fix debug window
- fix debug window, by re-adding rpcConsole->setClientModel(clientModel);
in BitcoinGUI::setClientModel(), which was removed by #2220
Diffstat (limited to 'src/qt')
| -rw-r--r-- | src/qt/bitcoingui.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/qt/bitcoingui.cpp b/src/qt/bitcoingui.cpp index a48581c6a..7530128fd 100644 --- a/src/qt/bitcoingui.cpp +++ b/src/qt/bitcoingui.cpp @@ -338,6 +338,7 @@ void BitcoinGUI::setClientModel(ClientModel *clientModel) // Receive and report messages from network/worker thread connect(clientModel, SIGNAL(message(QString,QString,unsigned int)), this, SLOT(message(QString,QString,unsigned int))); + rpcConsole->setClientModel(clientModel); walletFrame->setClientModel(clientModel); } } |