- Fixed space problem for "open destination folder" action

This commit is contained in:
Christophe Dumez 2007-12-09 09:28:11 +00:00
parent 14882fe38f
commit 82b1b29906

View file

@ -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);
}
}
}