From 87f1301f50ecc5d8ea981e413514b27c24baef1c Mon Sep 17 00:00:00 2001 From: Dirk Hohndel Date: Tue, 29 Dec 2015 09:51:34 -0800 Subject: [PATCH] QML UI: draw the profile anti aliased This seems to look much better. Signed-off-by: Dirk Hohndel --- qt-mobile/qmlprofile.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/qt-mobile/qmlprofile.cpp b/qt-mobile/qmlprofile.cpp index 276da7495..0a1e13f38 100644 --- a/qt-mobile/qmlprofile.cpp +++ b/qt-mobile/qmlprofile.cpp @@ -7,6 +7,7 @@ QMLProfile::QMLProfile(QQuickItem *parent) : QQuickPaintedItem(parent), m_margin(0) { + setAntialiasing(true); m_profileWidget = new ProfileWidget2(0); m_profileWidget->setProfileState(); m_profileWidget->setPrintMode(true);