diff -r f0c61338a2e8 -r 40da62e57d85 FontsTab.qml --- a/FontsTab.qml Wed May 28 19:31:55 2014 +0200 +++ b/FontsTab.qml Wed May 28 20:14:23 2014 +0200 @@ -46,7 +46,7 @@ anchors.margins: 8 spacing: 8 - Text { + Label { id: fontLabel text: "Current font: " + textFontDemoLowerCase.font.family + " - " + textFontDemoLowerCase.font.pointSize +"" MouseArea { @@ -59,21 +59,21 @@ anchors.margins: 0 spacing: 0 - Text { + Label { id: textFontDemoLowerCase anchors.margins: 0 text: "abcdefghijklmnopqrstyvwxyz" font: Qt.font({ family: "Arial", pointSize: 16, weight: Font.Normal }) } - Text { + Label { id: textFontDemoUpperCase anchors.margins: 0 text: "ABCDEFGHIJKLMNOPQRSTYVWXYZ" font: textFontDemoLowerCase.font } - Text { + Label { id: textFontDemoDigits anchors.margins: 0 text: "0123456789"