Details
-
Type:
Bug
-
Status: Closed
-
Priority:
P2: Important
-
Resolution: Done
-
Affects Version/s: 5.0.0 Beta 1
-
Fix Version/s: 5.0.0
-
Component/s: GUI: Text handling
-
Labels:None
-
Commits:3593701940fdc9d8a3f0d59a1f684305fd736009
Description
1. Configure Qt with -directwrite.
2. Edit the richtext/textedit example by setting PreferNoHinting on the default font:
QFont font = textEdit->font(); font.setHintingPreference(QFont::PreferNoHinting); textEdit->setFont(font);
3. Run it to see the awful mess. (This looks correct in Qt 4.8. Make the same modification to the textedit demo there to compare.)