mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-03-09 05:14:22 +01:00
Merge bitcoin-core/gui#300: Remove progress bar on modal overlay
61fd8fe9a1
Remove progress bar on modal overlay (bruno) Pull request description: This PR removes the progress bar (keeping only the percentage) on modal overlay resolves #279 Before:  After:  ACKs for top commit: Bosch-0: tACK61fd8fe9a1
on Windows 10. Unnecessary Progress bar no longer there :) jarolrod: tACK61fd8fe9a1
Tree-SHA512: 96d72f168b26e950ce37e9f489bcbcc608473c44bce3be127ccd47d17b7642fa234d314596186ee16b430d943575c312d84133425507a17ae7ac58ecae986639
This commit is contained in:
commit
480bf01c29
2 changed files with 0 additions and 11 deletions
|
@ -271,16 +271,6 @@ QLabel { color: rgb(40,40,40); }</string>
|
|||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QProgressBar" name="progressBar">
|
||||
<property name="value">
|
||||
<number>24</number>
|
||||
</property>
|
||||
<property name="format">
|
||||
<string/>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</item>
|
||||
<item row="4" column="0">
|
||||
|
|
|
@ -134,7 +134,6 @@ void ModalOverlay::tipUpdate(int count, const QDateTime& blockDate, double nVeri
|
|||
|
||||
// show the percentage done according to nVerificationProgress
|
||||
ui->percentageProgress->setText(QString::number(nVerificationProgress*100, 'f', 2)+"%");
|
||||
ui->progressBar->setValue(nVerificationProgress*100);
|
||||
|
||||
if (!bestHeaderDate.isValid())
|
||||
// not syncing
|
||||
|
|
Loading…
Add table
Reference in a new issue