diff --git a/src/keepass2android/KpEntryTemplatedEdit.cs b/src/keepass2android/KpEntryTemplatedEdit.cs index 30ec1d87..a03a5149 100644 --- a/src/keepass2android/KpEntryTemplatedEdit.cs +++ b/src/keepass2android/KpEntryTemplatedEdit.cs @@ -67,6 +67,11 @@ namespace keepass2android { entry.Strings.Set("_etm_template_uuid", new ProtectedString(false, templateEntry.Uuid.ToHexString())); entry.IconId = templateEntry.IconId; + entry.CustomIconUuid = templateEntry.CustomIconUuid; + entry.AutoType = templateEntry.AutoType.CloneDeep(); + entry.Binaries = templateEntry.Binaries.CloneDeep(); + entry.BackgroundColor = templateEntry.BackgroundColor; + entry.ForegroundColor = templateEntry.ForegroundColor; foreach (string name in templateEntry.Strings.GetKeys()) {