/hg/icedtea-web: SecurityDialog centers itself before becoming v...

aazores at icedtea.classpath.org aazores at icedtea.classpath.org
Fri Oct 11 07:32:33 PDT 2013


changeset 60b47a6ec2e4 in /hg/icedtea-web
details: http://icedtea.classpath.org/hg/icedtea-web?cmd=changeset;node=60b47a6ec2e4
author: Andrew Azores <aazores at redhat.com>
date: Fri Oct 11 10:31:55 2013 -0400

	SecurityDialog centers itself before becoming visible

	* netx/net/sourceforge/jnlp/security/SecurityDialog.java: (initDialog)
	centerDialog called in init rather than on windowOpened event


diffstat:

 ChangeLog                                              |  5 +++++
 netx/net/sourceforge/jnlp/security/SecurityDialog.java |  3 +--
 2 files changed, 6 insertions(+), 2 deletions(-)

diffs (38 lines):

diff -r 6983282010ca -r 60b47a6ec2e4 ChangeLog
--- a/ChangeLog	Wed Oct 09 12:18:49 2013 -0400
+++ b/ChangeLog	Fri Oct 11 10:31:55 2013 -0400
@@ -1,3 +1,8 @@
+2013-10-11  Andrew Azores  <aazores at redhat.com>
+
+	* netx/net/sourceforge/jnlp/security/SecurityDialog.java: (initDialog)
+	centerDialog called in init rather than on windowOpened event
+
 2013-10-09  Omair Majid  <oamjid at redhat.com>
 
 	* plugin/icedteanp/java/sun/applet/PluginProxySelector.java
diff -r 6983282010ca -r 60b47a6ec2e4 netx/net/sourceforge/jnlp/security/SecurityDialog.java
--- a/netx/net/sourceforge/jnlp/security/SecurityDialog.java	Wed Oct 09 12:18:49 2013 -0400
+++ b/netx/net/sourceforge/jnlp/security/SecurityDialog.java	Fri Oct 11 10:31:55 2013 -0400
@@ -245,6 +245,7 @@
         installPanel();
 
         pack();
+        centerDialog(this);
 
         WindowAdapter adapter = new WindowAdapter() {
             private boolean gotFocus = false;
@@ -263,14 +264,12 @@
                 if (e.getSource() instanceof SecurityDialog) {
                     SecurityDialog dialog = (SecurityDialog) e.getSource();
                     dialog.setResizable(true);
-                    centerDialog(dialog);
                     dialog.setValue(null);
                 }
             }
         };
         addWindowListener(adapter);
         addWindowFocusListener(adapter);
-
     }
 
     public AccessType getAccessType() {


More information about the distro-pkg-dev mailing list