mirror of
https://github.com/haveno-dex/haveno.git
synced 2024-11-17 00:07:49 +00:00
set offer state on UserThread
This commit is contained in:
parent
5b387f0416
commit
3aab3f57b1
1 changed files with 3 additions and 2 deletions
|
@ -17,6 +17,7 @@
|
||||||
|
|
||||||
package haveno.core.offer;
|
package haveno.core.offer;
|
||||||
|
|
||||||
|
import haveno.common.UserThread;
|
||||||
import haveno.common.crypto.KeyRing;
|
import haveno.common.crypto.KeyRing;
|
||||||
import haveno.common.crypto.PubKeyRing;
|
import haveno.common.crypto.PubKeyRing;
|
||||||
import haveno.common.handlers.ErrorMessageHandler;
|
import haveno.common.handlers.ErrorMessageHandler;
|
||||||
|
@ -261,7 +262,7 @@ public class Offer implements NetworkPayload, PersistablePayload {
|
||||||
///////////////////////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
public void setState(Offer.State state) {
|
public void setState(Offer.State state) {
|
||||||
stateProperty().set(state);
|
UserThread.await(() -> stateProperty().set(state));
|
||||||
}
|
}
|
||||||
|
|
||||||
public ObjectProperty<Offer.State> stateProperty() {
|
public ObjectProperty<Offer.State> stateProperty() {
|
||||||
|
@ -269,7 +270,7 @@ public class Offer implements NetworkPayload, PersistablePayload {
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setErrorMessage(String errorMessage) {
|
public void setErrorMessage(String errorMessage) {
|
||||||
this.errorMessageProperty.set(errorMessage);
|
UserThread.await(() -> errorMessageProperty.set(errorMessage));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue