mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-05 13:37:43 +03:00
Support setting a new parent group with an empty db.
This commit is contained in:
parent
fdf4ab9d76
commit
c36481edae
2 changed files with 38 additions and 29 deletions
|
@ -394,13 +394,15 @@ Group* Entry::group()
|
|||
|
||||
void Entry::setGroup(Group* group)
|
||||
{
|
||||
Q_ASSERT(group);
|
||||
|
||||
if (m_group == group) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (m_group) {
|
||||
m_group->removeEntry(this);
|
||||
if (m_group->database() != group->database() && m_group->database()) {
|
||||
if (m_group->database() && m_group->database() != group->database()) {
|
||||
m_group->database()->addDeletedObject(m_uuid);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue