From 82b1b2990628026b2bc6c107320e88ca7dec70fb Mon Sep 17 00:00:00 2001 From: Christophe Dumez Date: Sun, 9 Dec 2007 09:28:11 +0000 Subject: [PATCH] - Fixed space problem for "open destination folder" action --- src/GUI.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/GUI.cpp b/src/GUI.cpp index 99c857284..050b39645 100644 --- a/src/GUI.cpp +++ b/src/GUI.cpp @@ -406,7 +406,7 @@ void GUI::openDestinationFolder() const { QString savePath = h.save_path(); if(!pathsList.contains(savePath)) { pathsList.append(savePath); - QDesktopServices::openUrl(QUrl(savePath)); + QDesktopServices::openUrl(QString("file://")+savePath); } } }