When choosing the index directory, the FileChooser dialog will not navigate to hidden directories
Closed this issue · 2 comments
dbooth-boston commented
My lucene index file is in a hidden directory called ".graphdb". When I try to select it, the FileChooser dialog does not show hidden directories, so I cannot navigate to it.
To fix it, I modified the source code of src/main/java/org/apache/lucene/luke/app/desktop/components/dialog/menubar/OpenIndexDialogFactory.java to add one line to the browseDirectory function at line 99:
fc.setFileHidingEnabled(false);
mocobeta commented
Thanks, I will fix this as suggested.
mocobeta commented
This fix will be included in the next release.