summaryrefslogtreecommitdiff
path: root/metawatch/qml/com/javispedro/sowatch/metawatch/MWTitle.qml
blob: 5369c1855c0ffbedd33a0e62c02bf617008bafe9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import Qt 4.7

Rectangle {
	width: 96
	height: 16

	property alias text: label.text

	Row {
		anchors.fill: parent
		anchors.margins: 1
		Text {
			id: label
			font.bold: true
		}
	}
}