mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-01-11 07:18:08 +00:00
Don't close downloadFromURL dialog when showing empty url warning
This commit is contained in:
parent
112d4b8c71
commit
3e6706a371
@ -80,7 +80,6 @@ class downloadFromURL : public QDialog, private Ui::downloadFromURL{
|
||||
|
||||
public slots:
|
||||
void on_downloadButton_clicked() {
|
||||
close();
|
||||
QString urls = textUrls->toPlainText();
|
||||
QStringList url_list = urls.split(QString::fromUtf8("\n"));
|
||||
QString url;
|
||||
@ -97,6 +96,7 @@ class downloadFromURL : public QDialog, private Ui::downloadFromURL{
|
||||
QMessageBox::critical(0, tr("No URL entered"), tr("Please type at least one URL."));
|
||||
return;
|
||||
}
|
||||
close();
|
||||
emit urlsReadyToBeDownloaded(url_list_cleaned);
|
||||
qDebug("Emitted urlsReadytobedownloaded signal");
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user