display the last opened entry as an additional dataset, helps to fill paypal app and helps with partitioned data

This commit is contained in:
Philipp Crocoll
2018-01-02 13:59:24 +01:00
parent 11330b608b
commit 8287232866
9 changed files with 110 additions and 42 deletions

View File

@@ -289,6 +289,7 @@ namespace keepass2android
CanWrite = true;
_reloadRequested = false;
OtpAuxFileIoc = null;
LastOpenedEntry = null;
}
public void MarkAllGroupsAsDirty() {

View File

@@ -56,5 +56,10 @@ namespace keepass2android
{
get { return _entry; }
}
/// <summary>
/// if the entry was selected by searching for a URL, the query URL is returned here.
/// </summary>
public string SearchUrl { get; set; }
}
}