mirror of
https://github.com/Retropex/bitcoin.git
synced 2025-06-03 16:02:34 +02:00
Bugfix: Qt/Intro: Don't claim "for full chain" when pruning
This commit is contained in:
parent
42e3bc0dd8
commit
08919b694f
@ -316,7 +316,7 @@ void Intro::UpdateFreeSpaceLabel()
|
||||
freeString += " " + tr("(of %n GB needed)", "", m_required_space_gb);
|
||||
ui->freeSpace->setStyleSheet("QLabel { color: #800000 }");
|
||||
} else if (m_bytes_available / GB_BYTES - m_required_space_gb < 10) {
|
||||
freeString += " " + tr("(%n GB needed for full chain)", "", m_required_space_gb);
|
||||
freeString += " " + tr("(%n GB needed)", "", m_required_space_gb);
|
||||
ui->freeSpace->setStyleSheet("QLabel { color: #999900 }");
|
||||
} else {
|
||||
ui->freeSpace->setStyleSheet("");
|
||||
|
Loading…
Reference in New Issue
Block a user