summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/platformsupport/fontdatabases/mac/qfontengine_coretext.mm12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/platformsupport/fontdatabases/mac/qfontengine_coretext.mm b/src/platformsupport/fontdatabases/mac/qfontengine_coretext.mm
index 92eaebb7b9..6003ccbd82 100644
--- a/src/platformsupport/fontdatabases/mac/qfontengine_coretext.mm
+++ b/src/platformsupport/fontdatabases/mac/qfontengine_coretext.mm
@@ -440,12 +440,12 @@ QImage QCoreTextFontEngine::imageForGlyph(glyph_t glyph, QFixed subPixelPosition
glyph_metrics_t br = boundingBox(glyph);
if (m.isScaling()) {
- QFixed hscale = QFixed::fromReal(m.m11());
- QFixed vscale = QFixed::fromReal(m.m22());
- br.width *= hscale;
- br.height *= vscale;
- br.x *= hscale;
- br.y *= vscale;
+ qreal hscale = m.m11();
+ qreal vscale = m.m22();
+ br.width = QFixed::fromReal(br.width.toReal() * hscale);
+ br.height = QFixed::fromReal(br.height.toReal() * vscale);
+ br.x = QFixed::fromReal(br.x.toReal() * hscale);
+ br.y = QFixed::fromReal(br.y.toReal() * vscale);
}
QImage im(qRound(br.width)+2, qRound(br.height)+2, QImage::Format_RGB32);