handle pending simulation thread events before simulation starts, just

after loading
This commit is contained in:
Fredrik Osterlind 2011-02-22 20:31:04 +01:00
parent 0b86a784ee
commit 87adbcb3d5

View file

@ -685,6 +685,12 @@ public class Simulation extends Observable implements Runnable {
setChanged();
notifyObservers(this);
/* Execute simulation thread events now, before simulation starts */
while (hasPollRequests) {
popSimulationInvokes().run();
}
return true;
}