mirror of
https://github.com/haveno-dex/haveno.git
synced 2024-11-16 15:58:08 +00:00
fix sorting on buy > amount column (
Some checks are pending
Some checks are pending
This commit is contained in:
parent
6b91b057e5
commit
c855d66a0c
1 changed files with 2 additions and 1 deletions
|
@ -366,7 +366,6 @@ abstract public class OfferBookView<R extends GridPane, M extends OfferBookViewM
|
|||
matchingOffersToggle.disableProperty().bind(model.disableMatchToggle);
|
||||
matchingOffersToggle.setOnAction(e -> model.onShowOffersMatchingMyAccounts(matchingOffersToggle.isSelected()));
|
||||
|
||||
volumeColumn.sortableProperty().bind(model.showAllTradeCurrenciesProperty.not());
|
||||
model.getOfferList().comparatorProperty().bind(tableView.comparatorProperty());
|
||||
|
||||
amountColumn.sortTypeProperty().addListener((observable, oldValue, newValue) -> {
|
||||
|
@ -775,6 +774,7 @@ abstract public class OfferBookView<R extends GridPane, M extends OfferBookViewM
|
|||
private AutoTooltipTableColumn<OfferBookListItem, OfferBookListItem> getAmountColumn() {
|
||||
AutoTooltipTableColumn<OfferBookListItem, OfferBookListItem> column = new AutoTooltipTableColumn<>(Res.get("shared.XMRMinMax"), Res.get("shared.amountHelp"));
|
||||
column.setMinWidth(100);
|
||||
column.setSortable(true);
|
||||
column.getStyleClass().add("number-column");
|
||||
column.setCellValueFactory((offer) -> new ReadOnlyObjectWrapper<>(offer.getValue()));
|
||||
column.setCellFactory(
|
||||
|
@ -918,6 +918,7 @@ abstract public class OfferBookView<R extends GridPane, M extends OfferBookViewM
|
|||
AutoTooltipTableColumn<OfferBookListItem, OfferBookListItem> column = new AutoTooltipTableColumn<>("") {
|
||||
{
|
||||
setMinWidth(125);
|
||||
setSortable(true);
|
||||
}
|
||||
};
|
||||
column.getStyleClass().add("number-column");
|
||||
|
|
Loading…
Reference in a new issue