Nicer value for our cool desktop emulation window.
--- a/src/share/classes/sun/awt/peer/cacio/managed/FullScreenWindowFactory.java Mon May 18 17:21:31 2009 +0200
+++ b/src/share/classes/sun/awt/peer/cacio/managed/FullScreenWindowFactory.java Mon May 18 17:22:18 2009 +0200
@@ -39,7 +39,7 @@ public class FullScreenWindowFactory imp
private static final Dimension screenSize;
static {
String size = AccessController.doPrivileged(
- new GetPropertyAction("cacio.managed.screensize", "1024x800"));
+ new GetPropertyAction("cacio.managed.screensize", "1024x768"));
int x = size.indexOf('x');
int width = Integer.parseInt(size.substring(0, x));
int height = Integer.parseInt(size.substring(x + 1));