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.
1 parent 1035da4 commit d4e9801Copy full SHA for d4e9801
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