Skip to content

Commit

Permalink
utils: messagebox style fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tobtoht committed Oct 23, 2023
1 parent 91f6811 commit 701e8bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/Utils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 701e8bc

Please sign in to comment.