]> Nutra Git (v1) - gamesguru/feather.git/commitdiff
utils: messagebox style fix
authortobtoht <tob@featherwallet.org>
Mon, 23 Oct 2023 17:46:42 +0000 (19:46 +0200)
committertobtoht <tob@featherwallet.org>
Mon, 23 Oct 2023 17:46:42 +0000 (19:46 +0200)
src/utils/Utils.cpp

index da7d181aec4c1c2c21a18ff742238337cca8996e..51545dde4e4f66360a53af3f00e996a894742cef 100644 (file)
@@ -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("<b>%1</b>").arg(title));
     msgBox->setInformativeText(informativeText);
     msgBox->setIcon(icon);
     msgBox->setWindowTitle(windowTitle);