mirror of
https://github.com/Kunzisoft/KeePassDX.git
synced 2025-12-04 15:49:33 +01:00
Fix group copy
This commit is contained in:
@@ -30,7 +30,9 @@ abstract class PwGroup
|
|||||||
protected fun updateWith(source: PwGroup<Id, Group, Entry>) {
|
protected fun updateWith(source: PwGroup<Id, Group, Entry>) {
|
||||||
super.updateWith(source)
|
super.updateWith(source)
|
||||||
titleGroup = source.titleGroup
|
titleGroup = source.titleGroup
|
||||||
|
childGroups.clear()
|
||||||
childGroups.addAll(source.childGroups)
|
childGroups.addAll(source.childGroups)
|
||||||
|
childEntries.clear()
|
||||||
childEntries.addAll(source.childEntries)
|
childEntries.addAll(source.childEntries)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user