mirror of
https://github.com/retoaccess1/haveno-reto.git
synced 2024-11-10 13:13:36 +01:00
set progress listener state in same thread
This commit is contained in:
parent
7f3fd0af08
commit
5466689857
@ -11,11 +11,11 @@ public class DownloadListener {
|
||||
private final DoubleProperty percentage = new SimpleDoubleProperty(-1);
|
||||
|
||||
public void progress(double percentage, long blocksLeft, Date date) {
|
||||
UserThread.execute(() -> this.percentage.set(percentage / 100d));
|
||||
UserThread.await(() -> this.percentage.set(percentage / 100d));
|
||||
}
|
||||
|
||||
public void doneDownload() {
|
||||
UserThread.execute(() -> this.percentage.set(1d));
|
||||
UserThread.await(() -> this.percentage.set(1d));
|
||||
}
|
||||
|
||||
public ReadOnlyDoubleProperty percentageProperty() {
|
||||
|
Loading…
Reference in New Issue
Block a user