Qt: Default to native theme on MacOS

This commit is contained in:
Stenzek
2025-10-12 00:51:21 +10:00
parent a654ce63bf
commit 00042a5ea4

View File

@@ -38,7 +38,11 @@ static State s_state;
const char* QtHost::GetDefaultThemeName()
{
#ifndef __APPLE__
return "darkerfusion";
#else
return "";
#endif
}
void QtHost::UpdateApplicationTheme()