Fix drag'n drop

This commit is contained in:
Christophe Dumez 2010-12-31 08:47:13 +00:00
parent 64f4775a81
commit 155316c30e

View file

@ -798,17 +798,25 @@ void MainWindow::dropEvent(QDropEvent *event) {
QBtSession::instance()->downloadFromUrl(file);
continue;
}
// Bitcomet or Magnet link
if(file.startsWith("bc://bt/", Qt::CaseInsensitive)) {
qDebug("Converting bc link to magnet link");
file = misc::bcLinkToMagnet(file);
}
if(file.startsWith("magnet:", Qt::CaseInsensitive)) {
// FIXME: Possibly skipped torrent addition dialog
QBtSession::instance()->addMagnetUri(file);
continue;
}
if(useTorrentAdditionDialog) {
torrentAdditionDialog *dialog = new torrentAdditionDialog(this);
dialog->showLoadMagnetURI(file);
} else {
QBtSession::instance()->addMagnetUri(file);
}
continue;
}
// Local file
if(useTorrentAdditionDialog) {
torrentAdditionDialog *dialog = new torrentAdditionDialog(this);
if(file.startsWith("file:", Qt::CaseInsensitive))
file = QUrl(file).toLocalFile();
dialog->showLoad(file);
}else{
QBtSession::instance()->addTorrent(file);