In the following FXML example, the style set on the foo label is propagated to the bar label. Is this the expected result, given that the scene graph containment path is the same for both labels? [VBox->HBox>Label]
The issue does not occur when the scene graph containment path is different (e.g. the "foo" label is in a VBox)
<?xml version="1.0" encoding="UTF-8"?>
<?import java.lang.*?>
<?import javafx.scene.*?>
<?import javafx.scene.control.*?>
<?import javafx.scene.layout.*?>
<VBox fx:controller="stylepropagationissue.Sample"
xmlns:fx="http://javafx.com/fxml">
<children>
<HBox>
<children>
<Label text="Foo" style="-fx-font-size: 40pt;"/>
</children>
</HBox>
<HBox>
<children>
<Label text="Bar" />
</children>
</HBox>
</children>
</VBox>
The issue does not occur when the scene graph containment path is different (e.g. the "foo" label is in a VBox)
<?xml version="1.0" encoding="UTF-8"?>
<?import java.lang.*?>
<?import javafx.scene.*?>
<?import javafx.scene.control.*?>
<?import javafx.scene.layout.*?>
<VBox fx:controller="stylepropagationissue.Sample"
xmlns:fx="http://javafx.com/fxml">
<children>
<HBox>
<children>
<Label text="Foo" style="-fx-font-size: 40pt;"/>
</children>
</HBox>
<HBox>
<children>
<Label text="Bar" />
</children>
</HBox>
</children>
</VBox>