Есть виджет RSS Indicator, его иконка в лотке выглядит коряво. Как бы мне отцентрировать текст?
Код:
Item {
    id: compactRep
    Image {
        id: compactIcon
        source: root.appletIcon
        fillMode: Image.PreserveAspectCrop
        anchors.fill: parent
        anchors.margins: units.smallSpacing
    }
    Rectangle {
        id: circle
        width: 20
        height: width
        radius: Math.round(width / 2)
        color: "Black"
        opacity: 0.0
        visible: root.totalUnread > 0
        anchors {
            right: parent.right
            top: parent.top
        }
    }
    Text {
        text: root.totalUnread > 99 ? "99+" : root.totalUnread
        font.pointSize: 8
        color: "Black"
        anchors.centerIn: circle
        visible: circle.visible
    }

