Added saving of last used server.

This commit is contained in:
lars 2011-06-30 23:30:47 +02:00
parent 524496efc9
commit 7b2273618c

View file

@ -803,6 +803,17 @@ namespace SparkleShare {
}
}
// Looks up the user's email from the global configuration
public string PrevServer
{
get {
return SparkleConfig.DefaultConfig.PrevServer;
}
set {
SparkleConfig.DefaultConfig.PrevServer = value;
}
}
// Generates and installs an RSA keypair to identify this system
public void GenerateKeyPair ()