Browse Source

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

adaptive-webui-19844
Christophe Dumez 15 years ago
parent
commit
c35ef9ad15
  1. 2
      src/transferlistwidget.cpp

2
src/transferlistwidget.cpp

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

Loading…
Cancel
Save