From 701e8bc5a15759a3ce544fa32c007c326d134827 Mon Sep 17 00:00:00 2001 From: tobtoht Date: Mon, 23 Oct 2023 19:46:42 +0200 Subject: [PATCH] utils: messagebox style fix --- src/utils/Utils.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/Utils.cpp b/src/utils/Utils.cpp index da7d181a..51545dde 100644 --- a/src/utils/Utils.cpp +++ b/src/utils/Utils.cpp @@ -608,7 +608,7 @@ void showMsg(QWidget *parent, QMessageBox::Icon icon, const QString &windowTitle } auto *msgBox = new QMessageBox(parent); - msgBox->setText(title); + msgBox->setText(QString("%1").arg(title)); msgBox->setInformativeText(informativeText); msgBox->setIcon(icon); msgBox->setWindowTitle(windowTitle);