From eda513356b8eb58b3069ddceb8c3dbc63c7fcdcd Mon Sep 17 00:00:00 2001 From: Sine Striker <trueful@163.com> Date: 周日, 17 12月 2023 15:58:49 +0800 Subject: [PATCH] Update resources --- examples/mainwindow/main.cpp | 10 ++++++++++ 1 files changed, 10 insertions(+), 0 deletions(-) diff --git a/examples/mainwindow/main.cpp b/examples/mainwindow/main.cpp index 66f6bee..8bbaab3 100644 --- a/examples/mainwindow/main.cpp +++ b/examples/mainwindow/main.cpp @@ -1,4 +1,5 @@ #include <QtWidgets/QApplication> +#include <QtGui/QFont> #include <QtCore/QDebug> #include "mainwindow.h" @@ -17,6 +18,15 @@ QGuiApplication::setHighDpiScaleFactorRoundingPolicy( Qt::HighDpiScaleFactorRoundingPolicy::PassThrough); QApplication a(argc, argv); + +#ifdef Q_OS_WINDOWS + a.setFont([]() { + QFont f(QStringLiteral("Microsoft YaHei UI")); + f.setPixelSize(15); + return f; + }()); +#endif + MainWindow w; w.show(); return a.exec(); -- Gitblit v1.9.1