JAL-629 correct a timeout. Correct passing html flag.
authorBen Soares <b.soares@dundee.ac.uk>
Wed, 11 Oct 2023 22:11:46 +0000 (23:11 +0100)
committerBen Soares <b.soares@dundee.ac.uk>
Wed, 11 Oct 2023 22:11:46 +0000 (23:11 +0100)
src/jalview/bin/Jalview.java
src/jalview/gui/Desktop.java

index ba418fe..7518fce 100755 (executable)
@@ -2064,7 +2064,7 @@ public class Jalview
         String cont = MessageManager.getString("label.continue");
 
         Desktop.instance.nonBlockingDialog(title, warning, url, cont,
-                JvOptionPane.WARNING_MESSAGE, false, true, true, 2000);
+                JvOptionPane.WARNING_MESSAGE, false, true, true, 30000);
       }
     }
     if (j.getCommands() != null && j.getCommands().getErrors().size() > 0)
index d5840e6..ab5800c 100644 (file)
@@ -3771,7 +3771,7 @@ public class Desktop extends jalview.jbgui.GDesktop
           boolean html, boolean modal, int timeout)
   {
     nonBlockingDialog(32, 2, title, message, boxtext, button, type,
-            scrollable, false, modal, timeout);
+            scrollable, html, modal, timeout);
   }
 
   public void nonBlockingDialog(int width, int height, String title,