mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2024-11-27 19:57:45 +03:00
Fix installing search plugin by drag-n-dropping file.
This commit is contained in:
parent
21f18d015d
commit
5437674fdf
1 changed files with 15 additions and 1 deletions
|
@ -78,7 +78,21 @@ engineSelectDlg::~engineSelectDlg() {
|
|||
|
||||
void engineSelectDlg::dropEvent(QDropEvent *event) {
|
||||
event->acceptProposedAction();
|
||||
QStringList files = event->mimeData()->text().split(QString::fromUtf8("\n"));
|
||||
QStringList files;
|
||||
if (event->mimeData()->hasUrls()) {
|
||||
const QList<QUrl> urls = event->mimeData()->urls();
|
||||
foreach (const QUrl &url, urls) {
|
||||
if (!url.isEmpty()) {
|
||||
if (url.scheme().compare("file", Qt::CaseInsensitive) == 0)
|
||||
files << url.toLocalFile();
|
||||
else
|
||||
files << url.toString();
|
||||
}
|
||||
}
|
||||
}
|
||||
else {
|
||||
files = event->mimeData()->text().split(QString::fromUtf8("\n"));
|
||||
}
|
||||
foreach (QString file, files) {
|
||||
qDebug("dropped %s", qPrintable(file));
|
||||
if (Utils::Misc::isUrl(file)) {
|
||||
|
|
Loading…
Reference in a new issue