diff options
author | Jan Mulder <jlmulder@xs4all.nl> | 2018-01-03 13:10:06 +0100 |
---|---|---|
committer | Jan Mulder <jlmulder@xs4all.nl> | 2018-01-03 14:04:08 +0100 |
commit | 47bf5cf5e002ada21b03892d5229882db109015f (patch) | |
tree | 1172cf8ce32fcb820a222f8cff1d00230e90d7b4 /mobile-widgets | |
parent | a5b44362c62b303fa1cedaa633588243b264bfa0 (diff) | |
download | subsurface-47bf5cf5e002ada21b03892d5229882db109015f.tar.gz |
mobile: silence warnings in the app log
The new SHA mysteriously caused more than 300 extra warnings in the
app log. It was caused by a code change in Kirigami. The way to
suppress it is, in hindsight, after some hours of searching, trivial.
A Kirigami.BasicListItem shall have an icon defined. And as we do
not care about any icon here, just define it empty.
Signed-off-by: Jan Mulder <jlmulder@xs4all.nl>
Diffstat (limited to 'mobile-widgets')
-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 66821b158..2372a7674 100644 --- a/mobile-widgets/qml/HintsTextEdit.qml +++ b/mobile-widgets/qml/HintsTextEdit.qml @@ -106,6 +106,7 @@ TextField { bottomPadding: 0 leftPadding: 0 rightPadding: 0 + icon: "" implicitHeight: Kirigami.Units.gridUnit*2 checked: hintsView.currentIndex == index onClicked: { |