diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2020-02-23 08:21:31 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2020-03-01 10:21:44 -0800 |
commit | b5a427c8804bc75f5a2007ece03f9d8b34cd963f (patch) | |
tree | ba1969830eff9b9d8ed527752ba1faf2b34dfb08 /mobile-widgets | |
parent | e0766aa4bdd19dbcf538534abc8369aff6a6fa7a (diff) | |
download | subsurface-b5a427c8804bc75f5a2007ece03f9d8b34cd963f.tar.gz |
mobile/filter: use more appropriate placeholder text
This way it matches the filter mode.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'mobile-widgets')
-rw-r--r-- | mobile-widgets/qml/DiveList.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mobile-widgets/qml/DiveList.qml b/mobile-widgets/qml/DiveList.qml index 3017de8e6..aa58b232c 100644 --- a/mobile-widgets/qml/DiveList.qml +++ b/mobile-widgets/qml/DiveList.qml @@ -465,7 +465,7 @@ Kirigami.ScrollablePage { verticalAlignment: TextInput.AlignVCenter Layout.fillWidth: true text: "" - placeholderText: "Full text search" + placeholderText: sitefilterMode.currentText onAccepted: { manager.setFilter(text, sitefilterMode.currentIndex) } |