mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-05 21:47:38 +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
|
@ -54,7 +54,7 @@ public Q_SLOTS:
|
|||
|
||||
private Q_SLOTS:
|
||||
void entryAboutToAdd(Entry* entry);
|
||||
void entryAdded();
|
||||
void entryAdded(Entry* entry);
|
||||
void entryAboutToRemove(Entry* entry);
|
||||
void entryRemoved();
|
||||
void entryDataChanged(Entry* entry);
|
||||
|
@ -65,6 +65,7 @@ private:
|
|||
|
||||
Group* m_group;
|
||||
QList<Entry*> m_entries;
|
||||
QList<Entry*> m_orgEntries;
|
||||
QList<const Group*> m_allGroups;
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue