public static void openWindow(String fileFxml, String title, int width, int height, boolean resiz, Modality modality) throws IOException {
Parent root = FXMLLoader.load(FXMLUtils.class.getResource(fileFxml));
Stage stage = new Stage();
File icon = new File(FXMLUtils.class.getClassLoader().getResource("puffo.png").getFile());
stage.getIcons().add(new Image(icon.toURI().toString()));
stage.setTitle(title);
stage.setScene(new Scene(root, width, height));
stage.setResizable(resiz);
stage.initModality(modality);
stage.show();
}
al momento di richiamare il metodo, passavo una stringa vuota come parametro.
quindi in verità non impostavo un titolo.
scusate, penso di essere un pò fuso!