Author: ruschein
Date: 2011-06-24 16:08:57 -0700 (Fri, 24 Jun 2011)
New Revision: 25934
Modified:
core3/work-swing-impl/trunk/impl/src/main/java/org/cytoscape/work/internal/tunables/utils/FileChooserFilter.java
Log:
Fixed a bug that I introduced a few hours ago.
Modified:
core3/work-swing-impl/trunk/impl/src/main/java/org/cytoscape/work/internal/tunables/utils/FileChooserFilter.java
===================================================================
---
core3/work-swing-impl/trunk/impl/src/main/java/org/cytoscape/work/internal/tunables/utils/FileChooserFilter.java
2011-06-24 22:56:30 UTC (rev 25933)
+++
core3/work-swing-impl/trunk/impl/src/main/java/org/cytoscape/work/internal/tunables/utils/FileChooserFilter.java
2011-06-24 23:08:57 UTC (rev 25934)
@@ -25,7 +25,7 @@
//accept or not the file from jfilechooser
public boolean accept(final File file) {
if (file.isDirectory())
- return false;
+ return true;
String fileName = file.getName().toLowerCase();
--
You received this message because you are subscribed to the Google Groups
"cytoscape-cvs" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/cytoscape-cvs?hl=en.