From 2f9e98b77b660d34d74a1b3cf7ba41b501a6a310 Mon Sep 17 00:00:00 2001 From: "Admiral H. Curtiss" Date: Sun, 5 Nov 2023 18:13:00 +0100 Subject: [PATCH] DolphinQt: Check theme instead of system for when to apply dark title bars on Windows. --- Source/Core/DolphinQt/QtUtils/SetWindowDecorations.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/DolphinQt/QtUtils/SetWindowDecorations.cpp b/Source/Core/DolphinQt/QtUtils/SetWindowDecorations.cpp index 704e5a8f7f..6c595c0e2d 100644 --- a/Source/Core/DolphinQt/QtUtils/SetWindowDecorations.cpp +++ b/Source/Core/DolphinQt/QtUtils/SetWindowDecorations.cpp @@ -14,7 +14,7 @@ void SetQWidgetWindowDecorations(QWidget* widget) { #ifdef _WIN32 - if (!Settings::Instance().IsSystemDark()) + if (!Settings::Instance().IsThemeDark()) return; BOOL use_dark_title_bar = TRUE;