- 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; break;
case OPEN_DEST: case OPEN_DEST:
QDesktopServices::openUrl(QUrl(h.save_path())); QDesktopServices::openUrl("file://" + h.save_path());
break; break;
} }
} }