I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit 4191ad1c authored by jrandom's avatar jrandom Committed by zzz
Browse files

2004-10-06 jrandom

    * Enable explicit disabling of the systray entirely for windows machines
      with strange configurations: add -Dsystray.disable=true to the java
      command line.  (thanks mihi!)
parent 29287da3
No related branches found
No related tags found
No related merge requests found
......@@ -49,7 +49,7 @@ public class SysTray implements SysTrayMenuListener {
if (!(new File("router.config")).exists())
openRouterConsole("http://localhost:" + _portString + "/index.jsp");
if (System.getProperty("os.name").startsWith("Windows"))
if ( (System.getProperty("os.name").startsWith("Windows")) && (!Boolean.getBoolean("systray.disable")) )
_instance = new SysTray();
}
......
$Id: history.txt,v 1.34 2004/10/05 14:21:47 jrandom Exp $
$Id: history.txt,v 1.35 2004/10/05 20:12:04 jrandom Exp $
2004-10-06 jrandom
* Enable explicit disabling of the systray entirely for windows machines
with strange configurations: add -Dsystray.disable=true to the java
command line. (thanks mihi!)
2004-10-05 jrandom
* Allow peers on the same LAN to communicate with each other safely even
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment