From 66d210cf1ba01c4035b59c4fb9b839d7e70cf6f7 Mon Sep 17 00:00:00 2001 From: test Date: Wed, 21 Feb 2024 05:23:16 +0900 Subject: [PATCH] UI: Fix problem with Yes/No message box buttons not translated --- UI/window-basic-main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UI/window-basic-main.cpp b/UI/window-basic-main.cpp index c7aea6301..0850cdc18 100644 --- a/UI/window-basic-main.cpp +++ b/UI/window-basic-main.cpp @@ -9532,7 +9532,7 @@ void OBSBasic::on_resetDocks_triggered(bool force) !force) #endif { - QMessageBox::StandardButton button = QMessageBox::question( + QMessageBox::StandardButton button = OBSMessageBox::question( this, QTStr("ResetUIWarning.Title"), QTStr("ResetUIWarning.Text"));