mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-20 03:24:59 +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)
|
||||
{
|
||||
#ifdef _WIN32
|
||||
if (!Settings::Instance().IsSystemDark())
|
||||
if (!Settings::Instance().IsThemeDark())
|
||||
return;
|
||||
|
||||
BOOL use_dark_title_bar = TRUE;
|
||||
|
|
Loading…
Add table
Reference in a new issue