summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--mobile-widgets/qml/HintsTextEdit.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/mobile-widgets/qml/HintsTextEdit.qml b/mobile-widgets/qml/HintsTextEdit.qml
index b40acde2b..41ae2b225 100644
--- a/mobile-widgets/qml/HintsTextEdit.qml
+++ b/mobile-widgets/qml/HintsTextEdit.qml
@@ -13,7 +13,7 @@ TextField {
onTextChanged: {
textUpdateTimer.restart();
}
- onPressed: frame.shouldShow = !frame.shouldShow
+ Keys.onPressed: frame.shouldShow = !frame.shouldShow
Keys.onUpPressed: {
hintsView.currentIndex--;
}
@@ -88,7 +88,7 @@ TextField {
anchors.fill: parent
clip: true
onCurrentIndexChanged: root.text = model[currentIndex];
-
+
delegate: Kirigami.BasicListItem {
label: modelData
topPadding: 0