mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-03 12:37:39 +03:00
Fix displaying html characters in message boxes
This commit is contained in:
parent
f3b08102c4
commit
9de623120b
1 changed files with 1 additions and 0 deletions
|
@ -88,6 +88,7 @@ MessageBox::Button MessageBox::messageBox(QWidget* parent,
|
||||||
{
|
{
|
||||||
if (m_nextAnswer == MessageBox::NoButton) {
|
if (m_nextAnswer == MessageBox::NoButton) {
|
||||||
QMessageBox msgBox(parent);
|
QMessageBox msgBox(parent);
|
||||||
|
msgBox.setTextFormat(Qt::RichText);
|
||||||
msgBox.setIcon(icon);
|
msgBox.setIcon(icon);
|
||||||
msgBox.setWindowTitle(title);
|
msgBox.setWindowTitle(title);
|
||||||
msgBox.setText(text);
|
msgBox.setText(text);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue