mirror of
https://github.com/sparrowwallet/sparrow.git
synced 2024-12-25 05:06:45 +00:00
always show scan time remaining
This commit is contained in:
parent
ab0611fabc
commit
b588a4ee02
1 changed files with 1 additions and 1 deletions
|
@ -1297,7 +1297,7 @@ public class AppController implements Initializable {
|
||||||
public void bwtScanStatus(BwtScanStatusEvent event) {
|
public void bwtScanStatus(BwtScanStatusEvent event) {
|
||||||
serverToggle.setDisable(true);
|
serverToggle.setDisable(true);
|
||||||
if((AppServices.isConnecting() || AppServices.isConnected()) && !event.isCompleted()) {
|
if((AppServices.isConnecting() || AppServices.isConnected()) && !event.isCompleted()) {
|
||||||
statusUpdated(new StatusEvent("Scanning... (" + event.getProgress() + "% complete" + (event.getProgress() > 30 ? ", " + event.getRemainingAsString() + " remaining)" : ")")));
|
statusUpdated(new StatusEvent("Scanning... (" + event.getProgress() + "% complete, " + event.getRemainingAsString() + " remaining)"));
|
||||||
if(event.getProgress() > 0 && (statusTimeline == null || statusTimeline.getStatus() != Animation.Status.RUNNING)) {
|
if(event.getProgress() > 0 && (statusTimeline == null || statusTimeline.getStatus() != Animation.Status.RUNNING)) {
|
||||||
statusBar.setProgress((double)event.getProgress() / 100);
|
statusBar.setProgress((double)event.getProgress() / 100);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue