mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-04 13:07:38 +03:00
Add extra checks so we never return empty QMimeData from mimeData().
This commit is contained in:
parent
91868969ca
commit
4b3bee6400
2 changed files with 16 additions and 4 deletions
|
@ -313,8 +313,14 @@ QMimeData* GroupModel::mimeData(const QModelIndexList& indexes) const
|
|||
}
|
||||
}
|
||||
|
||||
data->setData(mimeTypes().first(), encoded);
|
||||
return data;
|
||||
if (seenGroups.isEmpty()) {
|
||||
delete data;
|
||||
return Q_NULLPTR;
|
||||
}
|
||||
else {
|
||||
data->setData(mimeTypes().first(), encoded);
|
||||
return data;
|
||||
}
|
||||
}
|
||||
|
||||
void GroupModel::groupDataChanged(Group* group)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue