mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-05 13:37:43 +03:00
Don't add new entries to EntryModel when in search mode.
Only allow moving entries from one group to the other.
This commit is contained in:
parent
f6e1af30b3
commit
33b4cd8636
5 changed files with 21 additions and 11 deletions
|
@ -452,7 +452,7 @@ void Group::addEntry(Entry* entry)
|
|||
}
|
||||
|
||||
Q_EMIT modified();
|
||||
Q_EMIT entryAdded();
|
||||
Q_EMIT entryAdded(entry);
|
||||
}
|
||||
|
||||
void Group::removeEntry(Entry* entry)
|
||||
|
@ -467,7 +467,7 @@ void Group::removeEntry(Entry* entry)
|
|||
}
|
||||
m_entries.removeAll(entry);
|
||||
Q_EMIT modified();
|
||||
Q_EMIT entryRemoved();
|
||||
Q_EMIT entryRemoved(entry);
|
||||
}
|
||||
|
||||
void Group::recSetDatabase(Database* db)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue