Merge pull request #4450 from JakubValtar/fix-first-error-check

PPS: Fix listeners not firing on first preprocessing run
This commit is contained in:
Ben Fry
2016-05-08 20:19:02 -04:00

View File

@@ -104,6 +104,9 @@ public class PreprocessingService {
this.editor = editor;
isEnabled = !editor.hasJavaTabs();
// Register listeners for first run
whenDone(this::fireListeners);
preprocessingThread = new Thread(this::mainLoop, "ECS");
preprocessingThread.start();
}