From 59a8b912746108a1b083ff8a11f7112c23d06433 Mon Sep 17 00:00:00 2001 From: Trial97 Date: Sun, 26 May 2024 16:28:07 +0300 Subject: [PATCH] add spacing to retry modal Signed-off-by: Trial97 --- launcher/net/NetJob.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/launcher/net/NetJob.cpp b/launcher/net/NetJob.cpp index 639047e43..66054cc8f 100644 --- a/launcher/net/NetJob.cpp +++ b/launcher/net/NetJob.cpp @@ -147,11 +147,11 @@ void NetJob::emitFailed(QString reason) if (m_ask_retry || m_manual_try < APPLICATION->settings()->get("NumberOfManualRetries").toInt()) { m_manual_try++; auto response = CustomMessageBox::selectable(nullptr, "Confirm retry", - "The tasks failed\n" + "The tasks failed.\n" "Failed urls\n" + getFailedFiles().join("\n\t") + - "\n" - "If this continues to happen please check the logs of the application" + ".\n" + "If this continues to happen please check the logs of the application.\n" "Do you want to retry?", QMessageBox::Warning, QMessageBox::Yes | QMessageBox::No, QMessageBox::No) ->exec();