From f7993f02067516f1b7dbd1431c2eab83985e35ad Mon Sep 17 00:00:00 2001 From: Christoph Atteneder Date: Tue, 16 Jan 2018 12:09:27 +0100 Subject: [PATCH] Remove space from style name so style is applied properly --- .../io/bisq/gui/main/market/offerbook/OfferBookChartView.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/src/main/java/io/bisq/gui/main/market/offerbook/OfferBookChartView.java b/gui/src/main/java/io/bisq/gui/main/market/offerbook/OfferBookChartView.java index 80d3cc53fbe..1cb2e965916 100644 --- a/gui/src/main/java/io/bisq/gui/main/market/offerbook/OfferBookChartView.java +++ b/gui/src/main/java/io/bisq/gui/main/market/offerbook/OfferBookChartView.java @@ -456,7 +456,7 @@ public void updateItem(final OfferListItem offerListItem, boolean empty) { tableView.setPlaceholder(placeholder); Label titleLabel = new AutoTooltipLabel(); - titleLabel.getStyleClass().add("table-title "); + titleLabel.getStyleClass().add("table-title"); UserThread.execute(() -> titleLabel.prefWidthProperty().bind(tableView.widthProperty())); boolean isSellOffer = direction == OfferPayload.Direction.SELL;