Merge pull request #6374 from jmacxx/change_buy_sell_button_text

Reduce width of Buy/Sell offerbook button
This commit is contained in:
Christoph Atteneder 2022-10-13 09:50:55 +02:00 committed by GitHub
commit 060246651a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1083,7 +1083,7 @@ abstract public class OfferBookView<R extends GridPane, M extends OfferBookViewM
private TableColumn<OfferBookListItem, OfferBookListItem> getActionColumn() {
TableColumn<OfferBookListItem, OfferBookListItem> column = new AutoTooltipTableColumn<>(Res.get("shared.actions")) {
{
setMinWidth(180);
setMinWidth(90);
setSortable(false);
}
};