From c07b89792d56063050f42999d52c551259a5edc6 Mon Sep 17 00:00:00 2001 From: spycrab Date: Wed, 30 May 2018 01:19:31 +0200 Subject: [PATCH] Qt/GeneralWidget: Add icon and title to the backend switch confirm dialog --- Source/Core/DolphinQt2/Config/Graphics/GeneralWidget.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Source/Core/DolphinQt2/Config/Graphics/GeneralWidget.cpp b/Source/Core/DolphinQt2/Config/Graphics/GeneralWidget.cpp index 9164df5257..caff7bc62b 100644 --- a/Source/Core/DolphinQt2/Config/Graphics/GeneralWidget.cpp +++ b/Source/Core/DolphinQt2/Config/Graphics/GeneralWidget.cpp @@ -181,10 +181,11 @@ void GeneralWidget::SaveSettings() { if (backend->GetName() == "Software Renderer") { - QMessageBox confirm_sw; + QMessageBox confirm_sw(this); confirm_sw.setIcon(QMessageBox::Warning); confirm_sw.setStandardButtons(QMessageBox::Yes | QMessageBox::No); + confirm_sw.setWindowTitle(tr("Confirm backend change")); confirm_sw.setText( tr("Software rendering is an order of magnitude slower than using the " "other backends.\nIt's only useful for debugging purposes.\nDo you "