Skip to content
New issue

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

Correct filechooser doc #39

Merged
merged 3 commits into from
Jan 7, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/main/java/qupath/fx/dialogs/FileChoosers.java
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@ public static String promptForFilePathOrURI(Window owner, String title, String d
/**
* Convenience method to create a {@link javafx.stage.FileChooser.ExtensionFilter} instance
* from a description and array of extensions.
* This checks to ensure that the provided extensions start with {@code ".*"}, and appends
* This checks to ensure that the provided extensions start with {@code "*."}, and appends
* one or both characters if necessary.
* @param description description of the filter
* @param extensions file extensions associated with the filter
Expand All @@ -340,7 +340,7 @@ public static FileChooser.ExtensionFilter createExtensionFilter(String descripti
/**
* Convenience method to create a {@link javafx.stage.FileChooser.ExtensionFilter} instance
* from a description and collection of extensions.
* This checks to ensure that the provided extensions start with {@code ".*"}, and appends
* This checks to ensure that the provided extensions start with {@code "*."}, and appends
* one or both characters if necessary.
* @param description
* @param extensions
Expand Down
Loading