unfreeze funds if error during creating offer

fix jfx error
This commit is contained in:
woodser 2022-07-12 18:38:56 -04:00
parent 4a171c9baa
commit 7945514c46
2 changed files with 8 additions and 7 deletions

View file

@ -17,6 +17,7 @@
package bisq.desktop.main.shared;
import bisq.common.UserThread;
import javafx.beans.property.SimpleStringProperty;
import javafx.beans.property.StringProperty;
@ -38,6 +39,6 @@ public class PriceFeedComboBoxItem {
}
public void setDisplayString(String displayString) {
this.displayStringProperty.set(displayString);
UserThread.execute(() -> this.displayStringProperty.set(displayString));
}
}