BUGFIX: Fix "open torrent destination" feature when path contains spaces

This commit is contained in:
Christophe Dumez
2010-01-20 18:43:45 +00:00
parent 3ae09658c9
commit 78a0f34645
2 changed files with 3 additions and 2 deletions

View File

@@ -529,7 +529,7 @@ void TransferListWidget::torrentDoubleClicked(QModelIndex index) {
}
break;
case OPEN_DEST:
QDesktopServices::openUrl(QUrl(h.save_path()));
QDesktopServices::openUrl("file://" + h.save_path());
break;
}
}