From fec7e92775eb3dacc8c36d38b63140abbea628c2 Mon Sep 17 00:00:00 2001 From: Christian Mollekopf Date: Wed, 22 Aug 2018 10:04:45 +0200 Subject: Don't apply the fontsize fix on mac. --- applications/kube/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/applications/kube/main.cpp b/applications/kube/main.cpp index 49a0b5fa..a85c9bd3 100644 --- a/applications/kube/main.cpp +++ b/applications/kube/main.cpp @@ -121,7 +121,7 @@ int main(int argc, char *argv[]) app.setApplicationName("kube"); app.setApplicationVersion(QString("%1 Branch: %2 Commit: %3").arg(kube_VERSION_STRING).arg(kube_BRANCH).arg(kube_COMMIT)); auto fontSize = app.font().pointSize(); -#ifdef Q_OS_UNIX +#if defined(Q_OS_UNIX) && (!defined(Q_OS_MAC)) if (qgetenv("QT_QPA_PLATFORMTHEME").isEmpty()) { //The hardcoded default in qgenericunixthemes.cpp of 9 is tiny, so we default to something larger. fontSize = 11; -- cgit v1.2.3