mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-01 13:48:56 +00:00
DolphinQt: Check theme instead of system for when to apply dark title bars on Windows.
This commit is contained in:
parent
ed6014ddb5
commit
2f9e98b77b
1 changed files with 1 additions and 1 deletions
|
@ -14,7 +14,7 @@
|
||||||
void SetQWidgetWindowDecorations(QWidget* widget)
|
void SetQWidgetWindowDecorations(QWidget* widget)
|
||||||
{
|
{
|
||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
if (!Settings::Instance().IsSystemDark())
|
if (!Settings::Instance().IsThemeDark())
|
||||||
return;
|
return;
|
||||||
|
|
||||||
BOOL use_dark_title_bar = TRUE;
|
BOOL use_dark_title_bar = TRUE;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue