import QtQuick 2.0 Column { width: 500 height: 500 Text { id: text1 Rectangle { color: "transparent"; border.width: 1; anchors.fill: parent } text: "buggy text" font.family: "Calibri" font.pixelSize: 12 } Text { Rectangle { color: "transparent"; border.width: 1 ; anchors.fill: parent} text: "normal text" font.pixelSize: 12 } }