From 016d15b8334830648438f074241d0b8fdbf3a4eb Mon Sep 17 00:00:00 2001 From: Michael Bayne Date: Tue, 20 Jul 2004 01:24:54 +0000 Subject: [PATCH] Try redownloading getdown.txt before creating the UI so that things look good when we first install. If the redownload fails, we'll pop up the UI anyway and display the error message. --- src/java/com/threerings/getdown/launcher/Getdown.java | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/java/com/threerings/getdown/launcher/Getdown.java b/src/java/com/threerings/getdown/launcher/Getdown.java index 0632512..66f6b33 100644 --- a/src/java/com/threerings/getdown/launcher/Getdown.java +++ b/src/java/com/threerings/getdown/launcher/Getdown.java @@ -1,5 +1,5 @@ // -// $Id: Getdown.java,v 1.13 2004/07/19 12:39:08 mdb Exp $ +// $Id: Getdown.java,v 1.14 2004/07/20 01:24:54 mdb Exp $ package com.threerings.getdown.launcher; @@ -56,7 +56,6 @@ public class Getdown extends Thread _ifc = _app.init(); } catch (IOException ioe) { Log.warning("Failed to parse 'getdown.txt': " + ioe); - updateStatus("m.init_failed"); _app.attemptRecovery(); _ifc = _app.init(); } @@ -333,7 +332,7 @@ public class Getdown extends Thread protected static final int MAX_LOOPS = 5; protected static final Rectangle DEFAULT_PPOS = - new Rectangle(0, 0, 300, 15); + new Rectangle(10, 10, 300, 15); protected static final Rectangle DEFAULT_STATUS = - new Rectangle(0, 20, 300, 200); + new Rectangle(10, 30, 300, 200); }