fix updating display of current price

This commit is contained in:
woodser 2023-12-10 08:11:14 -05:00
parent c7277187c5
commit 07769fd8d9
3 changed files with 30 additions and 31 deletions

View File

@ -429,14 +429,12 @@ public class MainView extends InitializableView<StackPane, MainViewModel> {
return new ListCell<>() {
@Override
protected void updateItem(PriceFeedComboBoxItem item, boolean empty) {
UserThread.execute(() -> {
super.updateItem(item, empty);
if (!empty && item != null) {
textProperty().bind(item.displayStringProperty);
} else {
textProperty().unbind();
}
});
}
};
}

View File

@ -131,6 +131,7 @@ public class MarketPricePresentation {
});
marketPriceBinding.subscribe((observable, oldValue, newValue) -> {
UserThread.execute(() -> {
if (newValue != null && !newValue.equals(oldValue)) {
setMarketPriceInItems();
@ -157,6 +158,7 @@ public class MarketPricePresentation {
selectedPriceFeedComboBoxItemProperty.get().setDisplayString(newValue);
}
});
});
marketPriceCurrencyCode.bind(priceFeedService.currencyCodeProperty());

View File

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