change UI update frequency to 1/2 sec about current directory

This commit is contained in:
Brian Carrier 2014-03-18 20:37:18 -04:00
parent 7253b964bc
commit b798070bdc

View File

@ -106,7 +106,7 @@ import org.sleuthkit.datamodel.TskException;
}
// this sleep here prevents the UI from locking up
// due to too frequent updates to the progressMonitor above
Thread.sleep(2 * 1000);
Thread.sleep(500);
}
} catch (InterruptedException ie) {
// nothing to do, thread was interrupted externally