/hg/release/icedtea-web-1.4: SecurityDialog centers itself befor...

aazores at icedtea.classpath.org aazores at icedtea.classpath.org
Fri Oct 11 07:39:47 PDT 2013


changeset c43d49d0db97 in /hg/release/icedtea-web-1.4
details: http://icedtea.classpath.org/hg/release/icedtea-web-1.4?cmd=changeset;node=c43d49d0db97
author: Andrew Azores <aazores at redhat.com>
date: Fri Oct 11 10:39:07 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 020590f4872d -r c43d49d0db97 ChangeLog
--- a/ChangeLog	Thu Sep 26 09:36:53 2013 +0200
+++ b/ChangeLog	Fri Oct 11 10:39:07 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-09-25  Andrew Azores  <aazores at redhat.com>
 
 	* Makefile.am: clean up summary_unit.txt and summary_reproducers.txt for
diff -r 020590f4872d -r c43d49d0db97 netx/net/sourceforge/jnlp/security/SecurityDialog.java
--- a/netx/net/sourceforge/jnlp/security/SecurityDialog.java	Thu Sep 26 09:36:53 2013 +0200
+++ b/netx/net/sourceforge/jnlp/security/SecurityDialog.java	Fri Oct 11 10:39:07 2013 -0400
@@ -244,6 +244,7 @@
         installPanel();
 
         pack();
+        centerDialog(this);
 
         WindowAdapter adapter = new WindowAdapter() {
             private boolean gotFocus = false;
@@ -262,14 +263,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