From c0fb1f829127d833f18b0cda63c61da58ff9d2a6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thorbj=C3=B8rn=20Lindeijer?= Date: Tue, 3 Dec 2024 17:18:50 +0100 Subject: [PATCH] Windows: Keep using the GDI font engine for now The new DirectWrite font engine appears to render some fonts blurry. Valid values for this "fontengine" option are: - fontengine=freetype - fontengine=gdi - fontengine=native It can also be configured on the command-line using `-platform windows:fontengine=gdi` for example, or throught an environment variable, for example `QT_QPA_PLATFORM=windows:fontengine=gdi`. --- dist/win/qt.conf | 3 +++ 1 file changed, 3 insertions(+) diff --git a/dist/win/qt.conf b/dist/win/qt.conf index 03a495f49e..8c74cfae80 100644 --- a/dist/win/qt.conf +++ b/dist/win/qt.conf @@ -1,3 +1,6 @@ [Paths] Plugins = plugins Translations = translations + +[Platforms] +WindowsArguments = fontengine=gdi