Merge pull request 'Statusbar: block remaining instead of absolute values' (#229) from tobtoht/feather:block_remaining into master

Reviewed-on: https://git.wownero.com/feather/feather/pulls/229
This commit is contained in:
tobtoht 2020-12-16 15:32:11 +00:00
commit d4fda0f5f3
1 changed files with 2 additions and 2 deletions

View File

@ -675,12 +675,12 @@ void MainWindow::onSynchronized() {
}
void MainWindow::onBlockchainSync(int height, int target) {
QString heightText = QString("Blockchain sync: %1/%2").arg(height).arg(target);
QString heightText = QString("Blockchain sync: %1 blocks remaining").arg(target - height);
m_statusLabelStatus->setText(heightText);
}
void MainWindow::onRefreshSync(int height, int target) {
QString heightText = QString("Wallet refresh: %1/%2").arg(height).arg(target);
QString heightText = QString("Wallet refresh: %1 blocks remaining").arg(target - height);
m_statusLabelStatus->setText(heightText);
this->updateNetStats();
}