Skip to content

Commit

Permalink
Remove Time Req On Syncing Icon
Browse files Browse the repository at this point in the history
  • Loading branch information
presstab committed Jul 14, 2014
1 parent 124ae8d commit 8c927c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/qt/bitcoingui.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -578,7 +578,7 @@ void BitcoinGUI::setNumBlocks(int count, int nTotalBlocks)
}

// Set icon state: spinning if catching up, tick otherwise
if(secs < 90*60 && count >= nTotalBlocks)
if(count >= nTotalBlocks) //remove time requirement
{
tooltip = tr("Up to date") + QString(".<br>") + tooltip;
labelBlocksIcon->setPixmap(QIcon(":/icons/synced").pixmap(STATUSBAR_ICONSIZE, STATUSBAR_ICONSIZE));
Expand Down

0 comments on commit 8c927c1

Please sign in to comment.