┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/dolphinmainwindow.cpp
diff options
context:
space:
mode:
authorPeter Penz <[email protected]>2012-01-30 12:07:08 +0100
committerPeter Penz <[email protected]>2012-01-30 12:09:21 +0100
commit517743a1bf2fab754182b53ba180be4043ed2148 (patch)
treecfc9a68616a18473977768e07bc6689cdc71fa85 /src/dolphinmainwindow.cpp
parente778465bbccbb1646b118c9e13ac22dbadc2939b (diff)
Fix drag & drop issues with non-local URLs
BUG: 292821 BUG: 292355 FIXED-IN: 4.8.1
Diffstat (limited to 'src/dolphinmainwindow.cpp')
-rw-r--r--src/dolphinmainwindow.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dolphinmainwindow.cpp b/src/dolphinmainwindow.cpp
index 3654ed6c9..74b751f5a 100644
--- a/src/dolphinmainwindow.cpp
+++ b/src/dolphinmainwindow.cpp
@@ -1330,7 +1330,7 @@ void DolphinMainWindow::tabDropEvent(int tab, QDropEvent* event)
const ViewTab& viewTab = m_viewTab[tab];
const DolphinView* view = viewTab.isPrimaryViewActive ? viewTab.primaryView->view()
: viewTab.secondaryView->view();
- DragAndDropHelper::dropUrls(view->rootItem(), event);
+ DragAndDropHelper::dropUrls(view->rootItem(), view->url(), event);
}
}