You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jun 24, 2021. It is now read-only.
package sample;
import javafx.application.Application;
import javafx.stage.FileChooser;
import javafx.stage.Stage;
public class Main extends Application {
@Override
public void start(Stage primaryStage) {
FileChooser fileChooser = new FileChooser();
fileChooser.setTitle("Saving file ...");
fileChooser.showSaveDialog(primaryStage);
}
public static void main(String[] args) {
launch(args);
}
}
When the above code was running with openjfx library 15.0.1 or 11.0.2, the title "Saving file ..." is not shown. It works properly with Java 8, though.
I'm running Ubuntu 20.04.
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Here is the sample code:
When the above code was running with openjfx library 15.0.1 or 11.0.2, the title "Saving file ..." is not shown. It works properly with Java 8, though.
I'm running Ubuntu 20.04.
The text was updated successfully, but these errors were encountered: