diff options
author | Gregory Maxwell <gmaxwell@gmail.com> | 2012-04-02 20:35:44 -0700 |
---|---|---|
committer | Gregory Maxwell <gmaxwell@gmail.com> | 2012-04-02 20:35:44 -0700 |
commit | 3263a245bbfd9f62d200e326408ddd9099e34672 (patch) | |
tree | 75300346ec945e00cb7a1d99b4e40eb0bbec6383 /src/qt | |
parent | 85ea8b4f4380dac803d43cd0b7829b107cc09e38 (diff) | |
parent | 2675fe6218f2f280f09ce45a0737120788c580ec (diff) |
Merge pull request #1026 from laanwj/2012_04_increase_up_to_date_time
Increase time ago of last block for "up to date" status from 30 to 90 minutes
Diffstat (limited to 'src/qt')
-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 91696310b4..cf4e43c5da 100644 --- a/src/qt/bitcoingui.cpp +++ b/src/qt/bitcoingui.cpp @@ -515,7 +515,7 @@ void BitcoinGUI::setNumBlocks(int count) } // Set icon state: spinning if catching up, tick otherwise - if(secs < 30*60) + if(secs < 90*60) { tooltip = tr("Up to date") + QString(".\n") + tooltip; labelBlocksIcon->setPixmap(QIcon(":/icons/synced").pixmap(STATUSBAR_ICONSIZE,STATUSBAR_ICONSIZE)); |