mirror of
https://github.com/feather-wallet/feather.git
synced 2024-12-23 12:09:50 +00:00
Merge pull request 'Status: fix negative blocks remaining' (#252) from tobtoht/feather:status_blocks_remaining into master
Reviewed-on: https://git.wownero.com/feather/feather/pulls/252
This commit is contained in:
commit
c8be1e4966
1 changed files with 5 additions and 4 deletions
|
@ -637,7 +637,7 @@ void MainWindow::onWalletOpened() {
|
||||||
this->touchbarShowWallet();
|
this->touchbarShowWallet();
|
||||||
this->updatePasswordIcon();
|
this->updatePasswordIcon();
|
||||||
|
|
||||||
m_updateBytes.start(1000);
|
m_updateBytes.start(100);
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainWindow::onBalanceUpdated(double balance, double unlocked, const QString &balance_str, const QString &unlocked_str) {
|
void MainWindow::onBalanceUpdated(double balance, double unlocked, const QString &balance_str, const QString &unlocked_str) {
|
||||||
|
@ -663,14 +663,15 @@ void MainWindow::onSynchronized() {
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainWindow::onBlockchainSync(int height, int target) {
|
void MainWindow::onBlockchainSync(int height, int target) {
|
||||||
QString heightText = QString("Blockchain sync: %1 blocks remaining").arg(target - height);
|
QString blocks = (target >= height) ? QString::number(target - height) : "?";
|
||||||
|
QString heightText = QString("Blockchain sync: %1 blocks remaining").arg(blocks);
|
||||||
m_statusLabelStatus->setText(heightText);
|
m_statusLabelStatus->setText(heightText);
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainWindow::onRefreshSync(int height, int target) {
|
void MainWindow::onRefreshSync(int height, int target) {
|
||||||
QString heightText = QString("Wallet refresh: %1 blocks remaining").arg(target - height);
|
QString blocks = (target >= height) ? QString::number(target - height) : "?";
|
||||||
|
QString heightText = QString("Wallet refresh: %1 blocks remaining").arg(blocks);
|
||||||
m_statusLabelStatus->setText(heightText);
|
m_statusLabelStatus->setText(heightText);
|
||||||
this->updateNetStats();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainWindow::onConnectionStatusChanged(int status)
|
void MainWindow::onConnectionStatusChanged(int status)
|
||||||
|
|
Loading…
Reference in a new issue