disabled Archaeopteryx quit message
authorkjvdheide <kjvanderheide@dundee.ac.uk>
Thu, 12 Oct 2017 15:38:52 +0000 (16:38 +0100)
committerkjvdheide <kjvanderheide@dundee.ac.uk>
Thu, 12 Oct 2017 15:38:52 +0000 (16:38 +0100)
forester/java/src/org/forester/archaeopteryx/MainFrameApplication.java

index 51bb251..2c9b585 100644 (file)
@@ -309,21 +309,21 @@ public final class MainFrameApplication extends MainFrame {
             @Override
             public void internalFrameClosing( final InternalFrameEvent e ) {
                 if ( isUnsavedDataPresent() ) {
-                    final int r = JOptionPane.showConfirmDialog( null,
-                                                                 "Exit despite potentially unsaved changes?",
-                                                                 "Exit?",
+                    final int r = JOptionPane.showConfirmDialog( _mainpanel,
+                                                                 "Close Archaeopteryx despite potentially unsaved changes?",
+                                                                 "Close viewer?",
                                                                  JOptionPane.YES_NO_OPTION );
                     if ( r != JOptionPane.YES_OPTION ) {
                         return;
                     }
                 }
-                else {
-                    final int r = JOptionPane
-                            .showConfirmDialog( null, "Exit Archaeopteryx?", "Exit?", JOptionPane.YES_NO_OPTION );
-                    if ( r != JOptionPane.YES_OPTION ) {
-                        return;
-                    }
-                }
+//                else {
+//                    final int r = JOptionPane
+//                            .showConfirmDialog( null, "Exit Archaeopteryx?", "Exit?", JOptionPane.YES_NO_OPTION );
+//                    if ( r != JOptionPane.YES_OPTION ) {
+//                        return;
+//                    }
+//                }
                 exit();
             }
         } );