Fix wrong row span so group is closed after offer table

This commit is contained in:
Christoph Atteneder 2018-03-28 09:42:36 +02:00
parent ee7c79fe6a
commit 3eaeeb2ce4
No known key found for this signature in database
GPG key ID: CD5DC1C529CDFD3B

View file

@ -148,7 +148,7 @@ public class OfferBookView extends ActivatableViewAndModel<GridPane, OfferBookVi
public void initialize() {
root.setPadding(new Insets(20, 25, 5, 25));
addTitledGroupBg(root, gridRow, 3, Res.get("offerbook.availableOffers"));
addTitledGroupBg(root, gridRow, 2, Res.get("offerbook.availableOffers"));
final Tuple3<HBox, AutoTooltipLabel, ComboBox> filterBoxTuple = addHBoxLabelComboBox(root, gridRow, Res.get("offerbook.filterByCurrency"), Layout.FIRST_ROW_DISTANCE);
final HBox filterBox = filterBoxTuple.first;