cheers,
Gunnar
________________________________________
From: development-bounces+gunnar.sletta=noki...@qt-project.org [development-bounces+gunnar.sletta=noki...@qt-project.org] on behalf of ext Loaden [loa...@gmail.com]
Sent: Friday, March 16, 2012 12:19 AM
To: devel...@qt-project.org
Subject: [Development] Why the UI font is not clear on Windows?
--
Regards
Loaden
_______________________________________________
Development mailing list
Devel...@qt-project.org
http://lists.qt-project.org/mailman/listinfo/development
>Inside qpaintengine_raster.cpp, in the begin function, there is a
check that decides which glyphCache is being used. It should pick
RGBMask for the windows >backingstore. I suspect that the bug is that it
does not pick that path. Find out why, and you have your fix :)
The value is correct, it is 0 ( RGBMask ).
The issue is apparently that the Free Type font engine is used, which
still requires a bit of work on Windows. In the meantime, you can use
the native font engine by specifying the command line argument:
<app> -platform windows:fontengine=native
Regards,
Friedemann
--
Friedemann Kleint
Qt Open Source Team
Nokia, Qt Development Frameworks
D:\qt-everywhere-opensource-src-5.0.0\qtbase\bin>tabdialog.exe -platform window
:fontengine=native
Before this get fixed, we can simply set environment variable
"QT_QPA_PLATFORM" to the value "window:fontengine=native" under
windows, then all applications will work as expected.
IMO, it is not as bad as it seems, by doing this, users will become
more familiar with how to specify qpa plugin and its options at least.
Debao
2012/3/16 Loaden <loa...@gmail.com>: