JAL-3515 Change to JvOptionPane wrapper feature/JAL-3515-slivka-preferences
authorMMWarowny <mmzwarowny@dundee.ac.uk>
Tue, 4 Feb 2020 12:24:19 +0000 (12:24 +0000)
committerMMWarowny <mmzwarowny@dundee.ac.uk>
Tue, 4 Feb 2020 12:24:36 +0000 (12:24 +0000)
src/jalview/gui/SlivkaPreferences.java

index 4df4bf6..f4f6a9a 100644 (file)
@@ -138,7 +138,7 @@ public class SlivkaPreferences extends JPanel
 
   private String showEditUrlDialog(String oldUrl)
   {
-    String input = (String) JOptionPane
+    String input = (String) JvOptionPane
         .showInternalInputDialog(
             this, 
             MessageManager.getString("label.url:"),
@@ -156,8 +156,10 @@ public class SlivkaPreferences extends JPanel
       new URL(input);
     } catch (MalformedURLException ex)
     {
-      JOptionPane.showMessageDialog(this,
-          MessageManager.getString("label.invalid_url"), "Warning",
+      JvOptionPane.showInternalMessageDialog(this,
+          MessageManager.getString("label.invalid_url"),
+          UIManager.getString("OptionPane.messageDialogTitle",
+              MessageManager.getLocale()),
           JOptionPane.WARNING_MESSAGE);
       return null;
     }
@@ -203,7 +205,7 @@ public class SlivkaPreferences extends JPanel
   };
 
   private ActionListener moveUrlUpAction = (ActionEvent e) -> {
-    int i = urlListTable.getSelectedRow();
+    final int i = urlListTable.getSelectedRow();
     if (i > 0)
     {
       moveTableRow(i, i - 1);
@@ -212,7 +214,7 @@ public class SlivkaPreferences extends JPanel
   };
 
   private ActionListener moveUrlDownAction = (ActionEvent e) -> {
-    int i = urlListTable.getSelectedRow();
+    final int i = urlListTable.getSelectedRow();
     if (i >= 0 && i < urls.size() - 1)
     {
       moveTableRow(i, i + 1);