We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1035da4 + d4e9801 commit d7afa2fCopy full SHA for d7afa2f
src/main/java/org/scijava/ui/swing/script/FileSystemTree.java
@@ -572,7 +572,8 @@ public void run() {
572
573
for (final WatchEvent<?> event: key.pollEvents()) {
574
final WatchEvent.Kind<?> kind = event.kind();
575
- if (StandardWatchEventKinds.OVERFLOW == kind) {
+ if (StandardWatchEventKinds.OVERFLOW == kind
576
+ || StandardWatchEventKinds.ENTRY_MODIFY == kind) { // ignore e.g. files getting larger or smaller
577
continue;
578
}
579
0 commit comments