Compare commits

...
Sign in to create a new pull request.

2 commits

Author SHA1 Message Date
fe155d6142
who enforced this
Signed-off-by: crueter <crueter@eden-emu.dev>
2025-07-30 00:10:05 -04:00
37a48fa5f8
[desktop] windows: explicitly set Vista style
Signed-off-by: crueter <crueter@eden-emu.dev>
2025-07-29 23:59:44 -04:00

View file

@ -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("Vista"));
#endif
QApplication app(argc, argv);
#ifdef _WIN32