diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2012-05-17 14:13:23 -0700 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2012-05-17 14:13:23 -0700 |
commit | f0fc95a1434b0f1d4d879d30c1a6c5c12245754a (patch) | |
tree | f80d395a0ec4a2a3d857464bac4f84160d1a6bad /src/qt/bitcoingui.cpp | |
parent | f1e7570755587e37c60cf652a398fafe40eb3008 (diff) | |
parent | c26f3a9bd117a8f4bdae8b35083d1503a8d136ee (diff) |
Merge pull request #1314 from Diapolo/Wallet_Transaction_state_Overviewpage
GUI: add 2 labels to the overviewpage that display Wallet and Transaction status
Diffstat (limited to 'src/qt/bitcoingui.cpp')
-rw-r--r-- | src/qt/bitcoingui.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/qt/bitcoingui.cpp b/src/qt/bitcoingui.cpp index c244663205..2ad1ead3ee 100644 --- a/src/qt/bitcoingui.cpp +++ b/src/qt/bitcoingui.cpp @@ -574,12 +574,16 @@ void BitcoinGUI::setNumBlocks(int count) { tooltip = tr("Up to date") + QString(".<br>") + tooltip; labelBlocksIcon->setPixmap(QIcon(":/icons/synced").pixmap(STATUSBAR_ICONSIZE, STATUSBAR_ICONSIZE)); + + overviewPage->showOutOfSyncWarning(false); } else { tooltip = tr("Catching up...") + QString("<br>") + tooltip; labelBlocksIcon->setMovie(syncIconMovie); syncIconMovie->start(); + + overviewPage->showOutOfSyncWarning(true); } if(!text.isEmpty()) |