Skip to content

Commit

Permalink
fix FileChooser.ExtensionFilter for "all file types"
Browse files Browse the repository at this point in the history
  • Loading branch information
IOOI-SqAR committed Jan 3, 2024
1 parent 1eab4e7 commit 3c02c58
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public static FileChooser createMemFileChooser( String title )
FileChooser fileChooser = new FileChooser();
fileChooser.setTitle( title );
fileChooser.getExtensionFilters().addAll(
new FileChooser.ExtensionFilter( "Alle Dateien", "*" ),
new FileChooser.ExtensionFilter( "Alle Dateien", "*.*" ),
new FileChooser.ExtensionFilter(
"Bin\u00E4rdateien (*.bin)",
"*.bin" ),
Expand Down

0 comments on commit 3c02c58

Please sign in to comment.