mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-05 05:27:39 +03:00
Make sure we don't add entries/groups multiple times to the drag'n'drop data.
This commit is contained in:
parent
ef46b3e8ad
commit
91868969ca
2 changed files with 19 additions and 2 deletions
|
@ -211,12 +211,20 @@ QMimeData* EntryModel::mimeData(const QModelIndexList& indexes) const
|
|||
QByteArray encoded;
|
||||
QDataStream stream(&encoded, QIODevice::WriteOnly);
|
||||
|
||||
QSet<Entry*> seenEntries;
|
||||
|
||||
for (int i = 0; i < indexes.size(); i++) {
|
||||
if (!indexes[i].isValid()) {
|
||||
continue;
|
||||
}
|
||||
|
||||
Entry* entry = entryFromIndex(indexes[i]);
|
||||
stream << entry->group()->database()->uuid() << entry->uuid();
|
||||
if (!seenEntries.contains(entry)) {
|
||||
// make sure we don't add entries multiple times when we get indexes
|
||||
// with the same row but different columns
|
||||
stream << entry->group()->database()->uuid() << entry->uuid();
|
||||
seenEntries.insert(entry);
|
||||
}
|
||||
}
|
||||
|
||||
data->setData(mimeTypes().first(), encoded);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue