From 7f13bb81f8953aec747a8f0a531d43abc5a87212 Mon Sep 17 00:00:00 2001 From: Tobias Fella Date: Mon, 1 Mar 2021 20:47:17 +0100 Subject: [PATCH] Windows: Set font size to 10 --- src/main.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/main.cpp b/src/main.cpp index 659f18c8c..38b1b4111 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -72,6 +72,9 @@ int main(int argc, char *argv[]) #ifdef Q_OS_WINDOWS QApplication::setStyle(QStringLiteral("breeze")); + auto font = app.font(); + font.setPointSize(10); + app.setFont(font); #endif QApplication::setOrganizationName("KDE");