Hey guys I have "bug" if you can call it so. When starting the program, one element is always blue.
@Override
public void start(Stage stage) throws Exception {
Parent root = FXMLLoader.load(getClass().getResource("resource/Start.fxml"));
Scene scene = new Scene(root);
stage.setScene(scene);
stage.setTitle("Alc Calc V1.1");
stage.show();
}
=>