diff --git a/kcmkwin/kwincompositing/qml/EffectView.qml b/kcmkwin/kwincompositing/qml/EffectView.qml index cf62139c61..f1f0011c65 100644 --- a/kcmkwin/kwincompositing/qml/EffectView.qml +++ b/kcmkwin/kwincompositing/qml/EffectView.qml @@ -78,13 +78,23 @@ Item { top: parent.top 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 { id: searchField clearButtonShown: true Layout.fillWidth: true height: 20 anchors { - top: parent.top + top: hint.bottom } focus: true }