changed progressbar text to "~n blocks remaining"
This commit is contained in:
parent
068ed1e838
commit
5519660a0d
1 changed files with 8 additions and 5 deletions
|
@ -461,20 +461,23 @@ void BitcoinGUI::setNumBlocks(int count)
|
||||||
}
|
}
|
||||||
|
|
||||||
int nTotal = clientModel->getNumBlocksOfPeers();
|
int nTotal = clientModel->getNumBlocksOfPeers();
|
||||||
int nPercentageLeft = 100 - (count / (nTotal / 100));
|
|
||||||
QString tooltip;
|
QString tooltip;
|
||||||
|
|
||||||
if(count < nTotal)
|
if(count < nTotal)
|
||||||
{
|
{
|
||||||
|
int nCurMax = nTotal - count;
|
||||||
|
int nOnePercentCurMax = nCurMax / 100;
|
||||||
|
int nPercentageDone = (count / (nTotal / 100));
|
||||||
|
|
||||||
if (clientModel->getStatusBarWarnings() == "")
|
if (clientModel->getStatusBarWarnings() == "")
|
||||||
{
|
{
|
||||||
progressBarLabel->setVisible(true);
|
progressBarLabel->setVisible(true);
|
||||||
progressBarLabel->setText(tr("Synchronizing with network..."));
|
progressBarLabel->setText(tr("Synchronizing with network..."));
|
||||||
progressBar->setVisible(true);
|
progressBar->setVisible(true);
|
||||||
progressBar->setFormat(tr("%v of %m blocks (%p%)"));
|
progressBar->setFormat(tr("~%m blocks remaining"));
|
||||||
progressBar->setAlignment(Qt::AlignCenter);
|
progressBar->setAlignment(Qt::AlignCenter);
|
||||||
progressBar->setMaximum(nTotal);
|
progressBar->setMaximum(nCurMax);
|
||||||
progressBar->setValue(count);
|
progressBar->setValue(nOnePercentCurMax * nPercentageDone);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
@ -482,7 +485,7 @@ void BitcoinGUI::setNumBlocks(int count)
|
||||||
progressBarLabel->setVisible(true);
|
progressBarLabel->setVisible(true);
|
||||||
progressBar->setVisible(false);
|
progressBar->setVisible(false);
|
||||||
}
|
}
|
||||||
tooltip = tr("Downloaded %1 of %2 blocks of transaction history (%3% left).").arg(count).arg(nTotal).arg(nPercentageLeft);
|
tooltip = tr("Downloaded %1 of %2 blocks of transaction history (%3% done).").arg(count).arg(nTotal).arg(nPercentageDone);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue