We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I just ran into the following issue in 6.0.1. Setting a margin in SceneBuilder:
generates the following fxml:
<?xml version="1.0" encoding="UTF-8"?> <?import javafx.geometry.Insets?> <?import javafx.scene.control.Button?> <?import javafx.scene.layout.HBox?> <HBox xmlns="http://javafx.com/javafx/19" xmlns:fx="http://javafx.com/fxml/1"> <children> <Button text="Button"> <HBox.margin> <Insets top="10.0" /> </HBox.margin> </Button> </children> </HBox>
Compiling this results in
[ERROR] /<path>/CompileFxml.java:[22,8] Default instance property is not applicable to this element. [ERROR] file:/<path>/margintest.fxml:12
The text was updated successfully, but these errors were encountered:
Fix handling of static properties with object arguments
5acd1ad
Task-number: #30
Missed this part of static properties handling for some reason. Fixed. Thanks for the report!
Sorry, something went wrong.
Paullo612
No branches or pull requests
I just ran into the following issue in 6.0.1. Setting a margin in SceneBuilder:
generates the following fxml:
Compiling this results in
The text was updated successfully, but these errors were encountered: