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
I am using jbr 21.0.5 (jbrsdk-21.0.5-osx-aarch64-b631.28 && jbrsdk-21.0.5-osx-aarch64-b631.16)to develop a compose desktop application,and the name filtering of the file selector is not working.
another error on createDsitrbutation:
java.lang.module.FindException: Hash of java.rmi (fb2a8e5538e247b738382c9da1b0709d18b4036d2c4cd87861f9009bb1215ac1) differs to expected hash (406ff94eac274ab55121f0a3cfb738c28f689ea8d28de3e661860c9d39a534be) recorded in java.base
I am using jbr 21.0.5 (jbrsdk-21.0.5-osx-aarch64-b631.28 && jbrsdk-21.0.5-osx-aarch64-b631.16)to develop a compose desktop application,and the name filtering of the file selector is not working.
Here is my code:
val dialog = FileDialog(Frame().apply { isVisible = true }, "img", FileDialog.LOAD).apply {
isMultipleMode = true
filenameFilter = FilenameFilter { _, name -> FileTypeUtils.isSupportImageType(name.split(".").last()) }
isVisible = true
}
dialog.files ....
The text was updated successfully, but these errors were encountered: