diff options
| author | spycrab <spycrab@users.noreply.github.com> | 2019-03-06 14:34:43 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-03-06 14:34:43 +0100 |
| commit | b8bcfe68656673926921c7187b2b06f0b4beaeaa (patch) | |
| tree | 0b5c7945d6a48241548631fd830204de34e58c8e /Source/Core | |
| parent | a865cc0bf6e00ce5b1a6414215dbef95f6b832d0 (diff) | |
| parent | f7e93a65563ca360cc7015733c6152c41ca20028 (diff) | |
Merge pull request #7859 from spycrab/qt_question_warning
Qt/ModalMessageBox: Use Warning instead of Critical icon for questions
Diffstat (limited to 'Source/Core')
| -rw-r--r-- | Source/Core/DolphinQt/QtUtils/ModalMessageBox.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/DolphinQt/QtUtils/ModalMessageBox.cpp b/Source/Core/DolphinQt/QtUtils/ModalMessageBox.cpp index a1232bc0e3..8cc23b613b 100644 --- a/Source/Core/DolphinQt/QtUtils/ModalMessageBox.cpp +++ b/Source/Core/DolphinQt/QtUtils/ModalMessageBox.cpp @@ -45,7 +45,7 @@ int ModalMessageBox::information(QWidget* parent, const QString& title, const QS int ModalMessageBox::question(QWidget* parent, const QString& title, const QString& text, StandardButtons buttons, StandardButton default_button) { - return ExecMessageBox(QMessageBox::Critical, parent, title, text, buttons, default_button); + return ExecMessageBox(QMessageBox::Warning, parent, title, text, buttons, default_button); } int ModalMessageBox::warning(QWidget* parent, const QString& title, const QString& text, |
