Fix double-click to open destination path (closes #1020366)

This commit is contained in:
Christophe Dumez 2012-07-03 18:09:46 +03:00
commit 41132d39ae

View file

@ -209,7 +209,7 @@ void TransferListWidget::torrentDoubleClicked(const QModelIndex& index) {
} }
break; break;
case OPEN_DEST: case OPEN_DEST:
QDesktopServices::openUrl(QUrl::fromLocalFile(h.save_path())); QDesktopServices::openUrl(QUrl::fromLocalFile(h.root_path()));
break; break;
} }
} }