-
Bug
-
Resolution: Unresolved
-
P3
-
jfx11
By default, FlowPane resizes all children in each row to fill the height of that row. A rowValignment of BASELINE is specified to override this behavior:
------------------------------
public final void setRowValignment​(VPos value)
The vertical alignment of nodes within each row of a horizontal flowpane. If this property is set to VPos.BASELINE, then the flowpane will always resize children to their preferred heights, rather than expanding heights to fill the row height. The property is ignored for vertical flowpanes.
------------------------------
This is not working. A FlowPane continues to resize its children to the row height even when rowValignment is BASELINE.
This was first reported as a doc bug here:
https://github.com/javafxports/openjdk-jfx/issues/348
After evaluating it, it is clearly a functional bug.
------------------------------
public final void setRowValignment​(VPos value)
The vertical alignment of nodes within each row of a horizontal flowpane. If this property is set to VPos.BASELINE, then the flowpane will always resize children to their preferred heights, rather than expanding heights to fill the row height. The property is ignored for vertical flowpanes.
------------------------------
This is not working. A FlowPane continues to resize its children to the row height even when rowValignment is BASELINE.
This was first reported as a doc bug here:
https://github.com/javafxports/openjdk-jfx/issues/348
After evaluating it, it is clearly a functional bug.
- relates to
-
JDK-8219080 Control with a maxHeight reserves preferredHeight in a baselined HBox
- Open
- links to