|
@@ -84,6 +84,16 @@ public class TestChooser extends JDialog {
|
|
|
*/
|
|
|
public TestChooser() throws HeadlessException {
|
|
|
super((JFrame) null, "TestChooser");
|
|
|
+ /** This listener ends application when window is closed (x button on top right corner of test chooser).
|
|
|
+ * @see issue#85 https://github.com/jMonkeyEngine/jmonkeyengine/issues/85
|
|
|
+ */
|
|
|
+ addWindowListener(new WindowAdapter(){
|
|
|
+ @Override
|
|
|
+ public void windowClosing(WindowEvent e)
|
|
|
+ {
|
|
|
+ dispose();
|
|
|
+ }
|
|
|
+ });
|
|
|
}
|
|
|
|
|
|
/**
|