┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/dolphindetailsview.cpp
diff options
context:
space:
mode:
authorRafael Fernández López <[email protected]>2007-12-18 21:04:26 +0000
committerRafael Fernández López <[email protected]>2007-12-18 21:04:26 +0000
commit665ca266e9a6cedb1a014b730e64c91f3c57e11d (patch)
treee85da969972d86896e43731a002e2e8384e5fce6 /src/dolphindetailsview.cpp
parent579a1ea6be19e036eed37825b52e651aac3f8f47 (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/dolphindetailsview.cpp')
-rw-r--r--src/dolphindetailsview.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/dolphindetailsview.cpp b/src/dolphindetailsview.cpp
index 46752fc95..886f3f9a6 100644
--- a/src/dolphindetailsview.cpp
+++ b/src/dolphindetailsview.cpp
@@ -278,6 +278,11 @@ void DolphinDetailsView::dragMoveEvent(QDragMoveEvent* event)
}
setDirtyRegion(m_dropRect);
}
+
+ if (event->mimeData()->hasUrls()) {
+ // accept url drops, independently from the destination item
+ event->acceptProposedAction();
+ }
}
void DolphinDetailsView::dropEvent(QDropEvent* event)