From 06f8823882e8c303ce4c100f83637b84f9ea4d69 Mon Sep 17 00:00:00 2001 From: crueter Date: Wed, 30 Jul 2025 21:00:54 +0200 Subject: [PATCH] [desktop] windows: explicitly set Vista style (#153) Signed-off-by: crueter Co-authored-by: MaranBr Reviewed-on: https://git.eden-emu.dev/eden-emu/eden/pulls/153 --- src/yuzu/main.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp index 52e7500cd3..9b35069307 100644 --- a/src/yuzu/main.cpp +++ b/src/yuzu/main.cpp @@ -5676,6 +5676,10 @@ int main(int argc, char* argv[]) { // Enables the core to make the qt created contexts current on std::threads QCoreApplication::setAttribute(Qt::AA_DontCheckOpenGLContextThreadAffinity); +#ifdef _WIN32 + QApplication::setStyle(QStringLiteral("windowsvista")); +#endif + QApplication app(argc, argv); #ifdef _WIN32