Browse Source

- Fixed space problem for "open destination folder" action

adaptive-webui-19844
Christophe Dumez 17 years ago
parent
commit
82b1b29906
  1. 2
      src/GUI.cpp

2
src/GUI.cpp

@ -406,7 +406,7 @@ void GUI::openDestinationFolder() const { @@ -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);
}
}
}

Loading…
Cancel
Save