mirror of
https://github.com/feather-wallet/feather.git
synced 2024-12-22 19:49:28 +00:00
utils: messagebox style fix
This commit is contained in:
parent
91f68113d2
commit
701e8bc5a1
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue