DmitryKey/luke

When choosing the index directory, the FileChooser dialog will not navigate to hidden directories

Closed this issue · 2 comments

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);

Thanks, I will fix this as suggested.

This fix will be included in the next release.