Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Use DISPOSE_ON_CLOSE for JFrame.
[graphlib_java.git] / DrawingWindow.java
index 0fd0571..3b42553 100644 (file)
@@ -636,7 +636,7 @@ public class DrawingWindow {
         frame.add(panel);
         frame.pack();
         frame.setResizable(false);
-        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
+        frame.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
         frame.addKeyListener(panel);
         frame.setLocationByPlatform(true);
         frame.setVisible(true);