From faa78c67d89ae56e7a3bc73b158bf5350462a09c Mon Sep 17 00:00:00 2001 From: hypercubus <hypercubus> Date: Fri, 27 Aug 2004 12:44:43 +0000 Subject: [PATCH] router console opens automatically upon first launch (i.e. if router.config is not found) --- .../java/src/net/i2p/apps/systray/SysTray.java | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/apps/systray/java/src/net/i2p/apps/systray/SysTray.java b/apps/systray/java/src/net/i2p/apps/systray/SysTray.java index c82483f573..c9cc8b2e90 100644 --- a/apps/systray/java/src/net/i2p/apps/systray/SysTray.java +++ b/apps/systray/java/src/net/i2p/apps/systray/SysTray.java @@ -10,6 +10,7 @@ package net.i2p.apps.systray; import java.awt.Frame; +import java.io.File; import snoozesoft.systray4j.SysTrayMenu; import snoozesoft.systray4j.SysTrayMenuEvent; @@ -24,7 +25,7 @@ import snoozesoft.systray4j.SysTrayMenuListener; */ public class SysTray implements SysTrayMenuListener { - private static final SysTray INSTANCE = System.getProperty("os.name").startsWith("Windows") ? new SysTray() : null; + private static SysTray _instance = new SysTray(); private BrowserChooser _browserChooser; private String _browserString; @@ -42,12 +43,20 @@ public class SysTray implements SysTrayMenuListener { _configFile.setProperty("browser", "default"); _browserString = _configFile.getProperty("browser", "default"); + + if (! (new File("router.config")).exists()) + openRouterConsole(); + + if (!System.getProperty("os.name").startsWith("Windows")) { + _instance = null; + return; + } _sysTrayMenuIcon.addSysTrayMenuListener(this); createSysTrayMenu(); } public static synchronized SysTray getInstance() { - return INSTANCE; + return _instance; } public void hide() { -- GitLab