diff --git a/src/gui/group/GroupModel.cpp b/src/gui/group/GroupModel.cpp index 6e11e5fd5..fb7608031 100644 --- a/src/gui/group/GroupModel.cpp +++ b/src/gui/group/GroupModel.cpp @@ -203,6 +203,10 @@ bool GroupModel::dropMimeData(const QMimeData* data, Qt::DropAction action, { Q_UNUSED(column); + if (action == Qt::IgnoreAction) { + return true; + } + if (!data || (action != Qt::MoveAction && action != Qt::CopyAction) || !parent.isValid()) { return false; }