1
0
mirror of https://github.com/d47081/qBittorrent.git synced 2025-01-22 12:34:19 +00:00

- Fix opening on torrent folder in explorer when path contains special characters or spaces

This commit is contained in:
Christophe Dumez 2010-01-20 18:41:12 +00:00
parent 4059bcc0fa
commit c35ef9ad15

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