mirror of
https://github.com/bisq-network/bisq.git
synced 2025-02-25 07:27:18 +01:00
Merge pull request #1197 from ripcurlx/UI-improvements
Remove space from style name so style is applied properly
This commit is contained in:
commit
f096fa2a5c
1 changed files with 1 additions and 1 deletions
|
@ -456,7 +456,7 @@ public class OfferBookChartView extends ActivatableViewAndModel<VBox, OfferBookC
|
||||||
tableView.setPlaceholder(placeholder);
|
tableView.setPlaceholder(placeholder);
|
||||||
|
|
||||||
Label titleLabel = new AutoTooltipLabel();
|
Label titleLabel = new AutoTooltipLabel();
|
||||||
titleLabel.getStyleClass().add("table-title ");
|
titleLabel.getStyleClass().add("table-title");
|
||||||
UserThread.execute(() -> titleLabel.prefWidthProperty().bind(tableView.widthProperty()));
|
UserThread.execute(() -> titleLabel.prefWidthProperty().bind(tableView.widthProperty()));
|
||||||
|
|
||||||
boolean isSellOffer = direction == OfferPayload.Direction.SELL;
|
boolean isSellOffer = direction == OfferPayload.Direction.SELL;
|
||||||
|
|
Loading…
Add table
Reference in a new issue