mirror of
https://invent.kde.org/system/dolphin
synced 2024-11-05 18:47:12 +00:00
Fix issue that shift + drag does not move files
BUG: 291103 FIXED-IN: 4.8.0
This commit is contained in:
parent
9592ffcf9d
commit
5289e852c1
1 changed files with 1 additions and 1 deletions
|
@ -925,7 +925,7 @@ void KItemListController::startDragging()
|
|||
const QPixmap pixmap = m_view->createDragPixmap(selectedItems);
|
||||
drag->setPixmap(pixmap);
|
||||
|
||||
drag->exec(Qt::CopyAction);
|
||||
drag->exec(Qt::MoveAction | Qt::CopyAction | Qt::LinkAction, Qt::CopyAction);
|
||||
}
|
||||
|
||||
KItemListWidget* KItemListController::hoveredWidget() const
|
||||
|
|
Loading…
Reference in a new issue