Add hint Label
This commit is contained in:
parent
a336e51867
commit
44fad963a9
1 changed files with 11 additions and 1 deletions
|
@ -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
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue