diff options
author | 2021-01-13 14:40:10 -0800 | |
---|---|---|
committer | 2021-01-13 16:16:31 -0800 | |
commit | 622e5aab692082509fcba8fba53ea2b16342e0d4 (patch) | |
tree | 019698bc89c22637ddc00b0da55cec78049c52e0 /mobile-widgets/qml/DiveList.qml | |
parent | bf556da81a292d5c13a582f8dd489fc38c8f9bfb (diff) | |
download | subsurface-622e5aab69.tar.gz |
mobile/cleanup: remove more noisy debug output
The repositioning message when a virtual keyboard opens is useful enough
to keep it and just hide it unless in verbose mode. The others have all
outlived their usefulness.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'mobile-widgets/qml/DiveList.qml')
-rw-r--r-- | mobile-widgets/qml/DiveList.qml | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/mobile-widgets/qml/DiveList.qml b/mobile-widgets/qml/DiveList.qml index cf532fa13..7c04deddb 100644 --- a/mobile-widgets/qml/DiveList.qml +++ b/mobile-widgets/qml/DiveList.qml @@ -53,11 +53,8 @@ Kirigami.ScrollablePage { height: isTrip ? 1 + 8 * Kirigami.Units.smallSpacing : 11 * Kirigami.Units.smallSpacing // delegateInnerItem.height onSelectedChanged: { - console.log("index " + index + " select changed to " + selected) - if (selected && index !== view.currentIndex) { + if (selected && index !== view.currentIndex) view.currentIndex = index; - console.log("updated view.currentIndex") - } } // When clicked, a trip expands / unexpands, a dive is opened in DiveDetails |