diff options
author | Marco Martin <notmart@gmail.com> | 2017-04-04 21:49:02 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2017-04-04 19:10:22 -0700 |
commit | 8a71196e4e58dfb3534fda5f00856a0223726689 (patch) | |
tree | 57e17c64813781be8b371eeb0a5ac70d85849ed7 /mobile-widgets/qml/HintsTextEdit.qml | |
parent | 89d7dd434856e2e189ec91d6d9fa160d57e8c203 (diff) | |
download | subsurface-8a71196e4e58dfb3534fda5f00856a0223726689.tar.gz |
QML UI: fix saving fields using HintsTextEdit
The editText property is not there anymore, we need text
Signed-off-by: Marco Martin <notmart@gmail.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'mobile-widgets/qml/HintsTextEdit.qml')
-rw-r--r-- | mobile-widgets/qml/HintsTextEdit.qml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mobile-widgets/qml/HintsTextEdit.qml b/mobile-widgets/qml/HintsTextEdit.qml index e716b9afd..b40acde2b 100644 --- a/mobile-widgets/qml/HintsTextEdit.qml +++ b/mobile-widgets/qml/HintsTextEdit.qml @@ -100,6 +100,7 @@ TextField { onClicked: { hintsView.currentIndex = index root.text = modelData + frame.shouldShow = false; } } ScrollBar.vertical: ScrollBar { } |