add spacing to retry modal
Signed-off-by: Trial97 <alexandru.tripon97@gmail.com>
This commit is contained in:
parent
694ea65457
commit
59a8b91274
@ -147,11 +147,11 @@ void NetJob::emitFailed(QString reason)
|
|||||||
if (m_ask_retry || m_manual_try < APPLICATION->settings()->get("NumberOfManualRetries").toInt()) {
|
if (m_ask_retry || m_manual_try < APPLICATION->settings()->get("NumberOfManualRetries").toInt()) {
|
||||||
m_manual_try++;
|
m_manual_try++;
|
||||||
auto response = CustomMessageBox::selectable(nullptr, "Confirm retry",
|
auto response = CustomMessageBox::selectable(nullptr, "Confirm retry",
|
||||||
"The tasks failed\n"
|
"The tasks failed.\n"
|
||||||
"Failed urls\n" +
|
"Failed urls\n" +
|
||||||
getFailedFiles().join("\n\t") +
|
getFailedFiles().join("\n\t") +
|
||||||
"\n"
|
".\n"
|
||||||
"If this continues to happen please check the logs of the application"
|
"If this continues to happen please check the logs of the application.\n"
|
||||||
"Do you want to retry?",
|
"Do you want to retry?",
|
||||||
QMessageBox::Warning, QMessageBox::Yes | QMessageBox::No, QMessageBox::No)
|
QMessageBox::Warning, QMessageBox::Yes | QMessageBox::No, QMessageBox::No)
|
||||||
->exec();
|
->exec();
|
||||||
|
Loading…
Reference in New Issue
Block a user