In FlatLaf 3.7 FileNameExtensionFilter for the new SystemFileChooser does not allow "." as part of a file name extension. See lines 1471 and 1472 in
|
if( extension.indexOf( '.' ) >= 0 || extension.indexOf( '*' ) >= 0 ) |
For being able to filter files of type tar.gz it would be helpful, if a dot was allowed in the extension. The corresponding Swing class javax.swing.filechooser.FileNameExtensionFilter for javax.swing.JFileChooser does not prohibit extensions to contain dots.
In FlatLaf 3.7
FileNameExtensionFilterfor the newSystemFileChooserdoes not allow "." as part of a file name extension. See lines 1471 and 1472 inFlatLaf/flatlaf-core/src/main/java/com/formdev/flatlaf/util/SystemFileChooser.java
Line 1471 in 7680c3a
For being able to filter files of type
tar.gzit would be helpful, if a dot was allowed in the extension. The corresponding Swing classjavax.swing.filechooser.FileNameExtensionFilterforjavax.swing.JFileChooserdoes not prohibit extensions to contain dots.