Fixes in PasswordActivity:

* correctly set keyfile when reloading
* show toast in main thread
Allow importing keyfile to internal folder
This commit is contained in:
Philipp Crocoll
2014-12-17 05:58:55 +01:00
parent 13ab33081d
commit 9279a3ae92
5 changed files with 1064 additions and 933 deletions

View File

@@ -326,5 +326,14 @@ namespace KeePassLib.Keys
sOut.Close();
}
/// <summary>
/// Allows to change the ioc value (without reloading the data, assuming it's the same content)
/// </summary>
/// <param name="newIoc"></param>
public void ResetIoc(IOConnectionInfo newIoc)
{
m_ioc = newIoc;
}
}
}