diff options
| author | Rafael Fernández López <[email protected]> | 2007-12-18 21:04:26 +0000 |
|---|---|---|
| committer | Rafael Fernández López <[email protected]> | 2007-12-18 21:04:26 +0000 |
| commit | 665ca266e9a6cedb1a014b730e64c91f3c57e11d (patch) | |
| tree | e85da969972d86896e43731a002e2e8384e5fce6 /src/dolphincolumnwidget.cpp | |
| parent | 579a1ea6be19e036eed37825b52e651aac3f8f47 (diff) | |
So I guess that is the behaviour that we really want :)
CCMAIL: [email protected]
svn path=/trunk/KDE/kdebase/apps/; revision=750173
Diffstat (limited to 'src/dolphincolumnwidget.cpp')
| -rw-r--r-- | src/dolphincolumnwidget.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/dolphincolumnwidget.cpp b/src/dolphincolumnwidget.cpp index 9a500df6b..75d83bd0f 100644 --- a/src/dolphincolumnwidget.cpp +++ b/src/dolphincolumnwidget.cpp @@ -247,6 +247,11 @@ void DolphinColumnWidget::dragMoveEvent(QDragMoveEvent* event) } } setDirtyRegion(m_dropRect); + + if (event->mimeData()->hasUrls()) { + // accept url drops, independently from the destination item + event->acceptProposedAction(); + } } void DolphinColumnWidget::dropEvent(QDropEvent* event) |
