diff options
author | Marius Kintel <marius@kintel.net> | 2011-09-27 23:39:30 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2011-09-27 23:39:30 (GMT) |
commit | 6bf2d6ca1a7258838cce0b11d719aa393655cc60 (patch) | |
tree | 36319100aca9767cff52a7e910387c667ccea944 | |
parent | 917fb654155d41c5930dc6a70e0fe9b8a9f671bd (diff) | |
parent | f17d9f0057c0b735f16ae1896850ed18bfca8592 (diff) |
Merge branch 'master' into visitortests
-rw-r--r-- | src/mainwin.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainwin.cc b/src/mainwin.cc index f3f53a1..e287f0d 100644 --- a/src/mainwin.cc +++ b/src/mainwin.cc @@ -1741,7 +1741,7 @@ void MainWindow::dropEvent(QDropEvent *event) for (int i = 0; i < urls.size(); i++) { if (urls[i].scheme() != "file") continue; - openFile(urls[i].path()); + openFile(urls[i].toLocalFile()); } clearCurrentOutput(); } |