even the simple non-internal users may want to look at the idea config files (e.g. to see their history)

This commit is contained in:
peter
2010-07-05 11:53:33 +01:00
parent c9427f5ae2
commit 277a3bd31a
@@ -97,11 +97,7 @@ public class FilenameIndex extends ScalarIndexExtension<String> {
private static class MyInputFilter implements FileBasedIndex.InputFilter {
public boolean acceptInput(final VirtualFile file) {
if (((ApplicationEx)ApplicationManager.getApplication()).isInternal()) {
return true;
}
return !ProjectUtil.isProjectOrWorkspaceFile(file);
return true;
}
}
}