diff options
author | Emil Ivov <emcho@jitsi.org> | 2008-09-06 12:12:13 +0000 |
---|---|---|
committer | Emil Ivov <emcho@jitsi.org> | 2008-09-06 12:12:13 +0000 |
commit | 046b8ff337f9d3e7ea311db26c65d64a3e483efa (patch) | |
tree | 2e515c68a109793226f2fc2bf062e19cba904e60 /src/net/java/sip/communicator/launcher/SIPCommunicator.java | |
parent | 88a0036d18b21387db6d0053bce7acf86a471d34 (diff) | |
download | jitsi-046b8ff337f9d3e7ea311db26c65d64a3e483efa.zip jitsi-046b8ff337f9d3e7ea311db26c65d64a3e483efa.tar.gz jitsi-046b8ff337f9d3e7ea311db26c65d64a3e483efa.tar.bz2 |
Trying to launch a second instance of SIP Communicator now brings the first one to front
Clicking on the systray icon when SC is minimized, now restores it
also, when SC is on another desktop the systray click now takes you to that desktop
Diffstat (limited to 'src/net/java/sip/communicator/launcher/SIPCommunicator.java')
-rw-r--r-- | src/net/java/sip/communicator/launcher/SIPCommunicator.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/net/java/sip/communicator/launcher/SIPCommunicator.java b/src/net/java/sip/communicator/launcher/SIPCommunicator.java index e3d65fa..5926aca 100644 --- a/src/net/java/sip/communicator/launcher/SIPCommunicator.java +++ b/src/net/java/sip/communicator/launcher/SIPCommunicator.java @@ -81,10 +81,10 @@ public class SIPCommunicator System.exit(argHandler.getErrorCode()); } - //lock our config di so that we would only have a single instance of + //lock our config dir so that we would only have a single instance of //sip communicator, no matter how many times we start it (use mainly //for handling sip: uris after starting the application) - if ( argHandlerRes != LaunchArgHandler.ACTION_CONTINUE_MULTIINSTANCE ) + if ( argHandlerRes != LaunchArgHandler.ACTION_CONTINUE_LOCK_DISABLED ) { SipCommunicatorLock lock = new SipCommunicatorLock(); |