Use warning message box instead of critical

This commit is contained in:
Chocobo1 2015-06-20 20:36:35 +08:00
parent 3e6706a371
commit bd8b8a8c8f

View file

@ -93,7 +93,7 @@ class downloadFromURL : public QDialog, private Ui::downloadFromURL{
}
}
if (!url_list_cleaned.size()) {
QMessageBox::critical(0, tr("No URL entered"), tr("Please type at least one URL."));
QMessageBox::warning(0, tr("No URL entered"), tr("Please type at least one URL."));
return;
}
close();