X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fgui%2FPromptUserConfig.java;h=cb594523893446e509dffbf6700f7ea3e341cd1e;hb=66e8b94c2ea875d4671ceec07a5c60954f4b12e3;hp=fb90ce7b69d1f059ab33b0ee3d555f26dea7f59c;hpb=fee1b781ca14aadea5d112fc554fe14879c787c5;p=jalview.git diff --git a/src/jalview/gui/PromptUserConfig.java b/src/jalview/gui/PromptUserConfig.java index fb90ce7..cb59452 100644 --- a/src/jalview/gui/PromptUserConfig.java +++ b/src/jalview/gui/PromptUserConfig.java @@ -24,8 +24,6 @@ import jalview.bin.Cache; import java.awt.Component; -import javax.swing.JOptionPane; - public class PromptUserConfig implements Runnable { /** @@ -120,6 +118,7 @@ public class PromptUserConfig implements Runnable this.allowCancel = allowCancel; } + @Override public void run() { if (property == null) @@ -201,18 +200,12 @@ public class PromptUserConfig implements Runnable } try { - int reply = JvOptionPane.showConfirmDialog( - Desktop.desktop, // component, + int reply = JvOptionPane.showConfirmDialog(Desktop.desktop, // component, dialogText, dialogTitle, (allowCancel) ? JvOptionPane.YES_NO_CANCEL_OPTION : JvOptionPane.YES_NO_OPTION, JvOptionPane.QUESTION_MESSAGE); - // now, ask the desktop to relayer any external windows that might have - // been obsured - if (Desktop.instance != null) - { - Desktop.instance.relayerWindows(); - } + // and finish parsing the result jalview.bin.Cache.log.debug("Got response : " + reply); if (reply == JvOptionPane.YES_OPTION) @@ -245,7 +238,8 @@ public class PromptUserConfig implements Runnable { jalview.bin.Cache.log.warn( "Unexpected exception when prompting user for yes/no setting for property " - + property, e); + + property, + e); } } }