Closed jConquest closed 3 years ago
This occurs when using the Simulation Starter
This may be related to the Analyze button issues. This will likely be addressed with the sim starter wizard.
fixed in PR #84
Adding info for future reference:
This appears to be caused by GUI threads (most likely from Java Swing components) that are not closed when the main display is closed. Resolved by calling Platform.exit()
to close any JavaFX components and then System.exit(0)
to ensure the JVM is terminated (i.e. close any remaining threads). If Java Swing components are removed in the future, this may become unnecessary.
While the old version of WB succesfully terminates the application by closing the app's window, the new version of WB fails to do so, requiring user to use ctrl+c in the terminal corresponding to the app to fully terminate the application