Add hint Label

This commit is contained in:
Antonis Tsiapaliokas 2013-09-10 11:47:16 +03:00 committed by Martin Gräßlin
parent a336e51867
commit 44fad963a9

View file

@ -78,13 +78,23 @@ Item {
top: parent.top top: parent.top
left: parent.left left: parent.left
} }
Label {
id: hint
text: i18n("Hint: To find out or configure how to activate an effect, look at the effect's settings.")
anchors {
top: parent.top
left: parent.left
}
}
PlasmaComponents.TextField { PlasmaComponents.TextField {
id: searchField id: searchField
clearButtonShown: true clearButtonShown: true
Layout.fillWidth: true Layout.fillWidth: true
height: 20 height: 20
anchors { anchors {
top: parent.top top: hint.bottom
} }
focus: true focus: true
} }