fix historical trades rounded corner top right

This commit is contained in:
woodser 2025-05-06 10:27:42 -04:00
parent 0dc0fb0029
commit 205bdd2d08
No known key found for this signature in database
GPG key ID: 55A10DD48ADEE5EF
2 changed files with 2 additions and 6 deletions

View file

@ -1115,10 +1115,6 @@ textfield */
-fx-padding: 2 0 2 0;
}
.table-view .column-header.last-column {
-fx-padding: 0 10 0 0;
}
.table-view .column-header.last-column .label {
-fx-alignment: center-right;
}
@ -1142,9 +1138,9 @@ textfield */
}
.table-view .column-header.last-column {
-fx-padding: 0 10 0 0;
-fx-background-radius: 0 15 0 0;
-fx-border-radius: 0 15 0 0;
}
.number-column.table-cell {

View file

@ -866,7 +866,7 @@ public class TradesChartsView extends ActivatableViewAndModel<VBox, TradesCharts
// paymentMethod
TableColumn<TradeStatistics3ListItem, TradeStatistics3ListItem> paymentMethodColumn = new AutoTooltipTableColumn<>(Res.get("shared.paymentMethod"));
paymentMethodColumn.getStyleClass().add("number-column");
paymentMethodColumn.getStyleClass().addAll("number-column", "last-column");
paymentMethodColumn.setCellValueFactory((tradeStatistics) -> new ReadOnlyObjectWrapper<>(tradeStatistics.getValue()));
paymentMethodColumn.setCellFactory(
new Callback<>() {