changeset in /hg/icedtea6: 2008-04-17 Joshua Sumali <jsumali at r...

Joshua Sumali jsumali at redhat.com
Thu Apr 17 10:22:37 PDT 2008


changeset 3afc6a459636 in /hg/icedtea6
details: http://icedtea.classpath.org/hg/icedtea6?cmd=changeset;node=3afc6a459636
description:
	2008-04-17  Joshua Sumali  <jsumali at redhat.com>

	        * rt/net/sourceforge/jnlp/Launcher.java: Fix applet focusing bug.

diffstat:

2 files changed, 6 insertions(+), 1 deletion(-)
ChangeLog                             |    4 ++++
rt/net/sourceforge/jnlp/Launcher.java |    3 ++-

diffs (24 lines):

diff -r c8221da6f9eb -r 3afc6a459636 ChangeLog
--- a/ChangeLog	Wed Apr 16 12:08:12 2008 -0700
+++ b/ChangeLog	Thu Apr 17 13:22:10 2008 -0400
@@ -1,3 +1,7 @@ 2008-04-16  Keith Seitz  <keiths at redhat.
+2008-04-17  Joshua Sumali  <jsumali at redhat.com>
+
+	* rt/net/sourceforge/jnlp/Launcher.java: Fix applet focusing bug.
+
 2008-04-16  Keith Seitz  <keiths at redhat.com>
 
 	* patches/icedtea-LCMS-setTagData.patch: New file.
diff -r c8221da6f9eb -r 3afc6a459636 rt/net/sourceforge/jnlp/Launcher.java
--- a/rt/net/sourceforge/jnlp/Launcher.java	Wed Apr 16 12:08:12 2008 -0700
+++ b/rt/net/sourceforge/jnlp/Launcher.java	Thu Apr 17 13:22:10 2008 -0400
@@ -551,7 +551,8 @@ public class Launcher {
 
         public void run() {
             try {
-                if (context)
+                // Do not create new AppContext if we're using NetX and gcjwebplugin.
+                if (context && !isPlugin)
                 	new Reflect().invokeStatic("sun.awt.SunToolkit", "createNewAppContext");
 
                 if (isPlugin) {



More information about the distro-pkg-dev mailing list