We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e1cbcd commit b3eba76Copy full SHA for b3eba76
src/prompter/Prompter.qml
@@ -763,7 +763,7 @@ Flickable {
763
font.hintingPreference: Font.PreferFullHinting
764
font.kerning: true
765
font.preferShaping: true
766
- renderType: font.pixelSize < 121 || Screen.devicePixelRatio !== 1.0 || root.forceQtTextRenderer ? Text.QtRendering : Text.NativeRendering
+ renderType: (Qt.platform.os==="ios" || Qt.platform.os==="osx") ? Text.NativeRendering : (font.pixelSize < 121 || Screen.devicePixelRatio !== 1.0 || root.forceQtTextRenderer ? Text.QtRendering : Text.NativeRendering)
767
FontLoader {
768
id: westernSeriousSansfFont
769
source: "../fonts/DejaVuSans.ttf"
0 commit comments