diff --git a/src/models/playlistmodel.cpp b/src/models/playlistmodel.cpp index b9ca29f978..9e76dc6814 100644 --- a/src/models/playlistmodel.cpp +++ b/src/models/playlistmodel.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2012-2024 Meltytech, LLC + * Copyright (c) 2012-2025 Meltytech, LLC * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -496,7 +496,7 @@ QVariant PlaylistModel::headerData(int section, Qt::Orientation orientation, int Qt::DropActions PlaylistModel::supportedDropActions() const { - return Qt::CopyAction | Qt::MoveAction | Qt::LinkAction; + return Qt::CopyAction | Qt::MoveAction; } bool PlaylistModel::insertRows(int row, int count, const QModelIndex &parent) diff --git a/src/videowidget.cpp b/src/videowidget.cpp index d675064286..ca1ff58b57 100644 --- a/src/videowidget.cpp +++ b/src/videowidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2024 Meltytech, LLC + * Copyright (c) 2011-2025 Meltytech, LLC * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -199,7 +199,7 @@ void VideoWidget::mouseMoveEvent(QMouseEvent *event) drag->setPixmap(QPixmap::fromImage(displayImage)); } drag->setHotSpot(QPoint(0, 0)); - drag->exec(Qt::LinkAction); + drag->exec(Qt::CopyAction); } void VideoWidget::keyPressEvent(QKeyEvent *event)