/hg/icedtea-web: make splash screen a JDialog instead of a JFrame
omajid at icedtea.classpath.org
omajid at icedtea.classpath.org
Tue May 31 09:00:29 PDT 2011
changeset af1ed34483d1 in /hg/icedtea-web
details: http://icedtea.classpath.org/hg/icedtea-web?cmd=changeset;node=af1ed34483d1
author: Omair Majid <omajid at redhat.com>
date: Tue May 31 12:00:01 2011 -0400
make splash screen a JDialog instead of a JFrame
We dont want the splash screen to be resized. Tiling window managers
will resize JFrames but not JDialogs.
2011-05-31 Omair Majid <omajid at redhat.com>
* netx/net/sourceforge/jnlp/JNLPSplashScreen.java: Subclass
JDialog, not JFrame.
diffstat:
ChangeLog | 5 +++++
netx/net/sourceforge/jnlp/JNLPSplashScreen.java | 4 ++--
2 files changed, 7 insertions(+), 2 deletions(-)
diffs (30 lines):
diff -r 03f8f75457dc -r af1ed34483d1 ChangeLog
--- a/ChangeLog Mon May 30 14:03:23 2011 -0400
+++ b/ChangeLog Tue May 31 12:00:01 2011 -0400
@@ -1,3 +1,8 @@
+2011-05-31 Omair Majid <omajid at redhat.com>
+
+ * netx/net/sourceforge/jnlp/JNLPSplashScreen.java: Subclass JDialog, not
+ JFrame.
+
2011-05-30 Andrew Su <asu at redhat.com>
* netx/net/sourceforge/jnlp/controlpanel/TemporaryInternetFilesPanel.java:
diff -r 03f8f75457dc -r af1ed34483d1 netx/net/sourceforge/jnlp/JNLPSplashScreen.java
--- a/netx/net/sourceforge/jnlp/JNLPSplashScreen.java Mon May 30 14:03:23 2011 -0400
+++ b/netx/net/sourceforge/jnlp/JNLPSplashScreen.java Tue May 31 12:00:01 2011 -0400
@@ -10,12 +10,12 @@
import java.net.URL;
import javax.imageio.ImageIO;
-import javax.swing.JFrame;
+import javax.swing.JDialog;
import net.sourceforge.jnlp.cache.ResourceTracker;
import net.sourceforge.jnlp.runtime.JNLPRuntime;
-public class JNLPSplashScreen extends JFrame {
+public class JNLPSplashScreen extends JDialog {
String applicationTitle;
String applicationVendor;
More information about the distro-pkg-dev
mailing list