Browse Source

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

adaptive-webui-19844
Christophe Dumez 12 years ago
parent
commit
41132d39ae
  1. 2
      src/transferlistwidget.cpp

2
src/transferlistwidget.cpp

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

Loading…
Cancel
Save