aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIngo Bauersachs <ingo@jitsi.org>2013-12-05 20:24:14 +0100
committerIngo Bauersachs <ingo@jitsi.org>2013-12-05 20:38:57 +0100
commit0bd65339d526911bceda44d905e5ab414bc08f14 (patch)
treef333527f1248d9cd893875809ff512e9e212c686
parent97277e6972e632e398681c3b20065c3537fb9c19 (diff)
downloadjitsi-0bd65339d526911bceda44d905e5ab414bc08f14.zip
jitsi-0bd65339d526911bceda44d905e5ab414bc08f14.tar.gz
jitsi-0bd65339d526911bceda44d905e5ab414bc08f14.tar.bz2
Don't load window position if it's not supposed to be saved
-rw-r--r--src/net/java/sip/communicator/plugin/desktoputil/SIPCommFrame.java5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/net/java/sip/communicator/plugin/desktoputil/SIPCommFrame.java b/src/net/java/sip/communicator/plugin/desktoputil/SIPCommFrame.java
index b5c8e7d..a0fe1b3 100644
--- a/src/net/java/sip/communicator/plugin/desktoputil/SIPCommFrame.java
+++ b/src/net/java/sip/communicator/plugin/desktoputil/SIPCommFrame.java
@@ -335,6 +335,11 @@ public class SIPCommFrame
*/
public void setSizeAndLocation()
{
+ if (!isSaveSizeAndLocation)
+ {
+ return;
+ }
+
ConfigurationService configService =
DesktopUtilActivator.getConfigurationService();
String className = this.getClass().getName();