diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2021-01-13 14:40:10 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2021-01-13 16:16:31 -0800 |
commit | 622e5aab692082509fcba8fba53ea2b16342e0d4 (patch) | |
tree | 019698bc89c22637ddc00b0da55cec78049c52e0 /mobile-widgets/qml | |
parent | bf556da81a292d5c13a582f8dd489fc38c8f9bfb (diff) | |
download | subsurface-622e5aab692082509fcba8fba53ea2b16342e0d4.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')
-rw-r--r-- | mobile-widgets/qml/DiveDetailsEdit.qml | 3 | ||||
-rw-r--r-- | mobile-widgets/qml/DiveList.qml | 5 | ||||
-rw-r--r-- | mobile-widgets/qml/SsrfTextField.qml | 3 | ||||
-rw-r--r-- | mobile-widgets/qml/StatisticsPage.qml | 5 |
4 files changed, 3 insertions, 13 deletions
diff --git a/mobile-widgets/qml/DiveDetailsEdit.qml b/mobile-widgets/qml/DiveDetailsEdit.qml index 5fb2b2cde..703d573b9 100644 --- a/mobile-widgets/qml/DiveDetailsEdit.qml +++ b/mobile-widgets/qml/DiveDetailsEdit.qml @@ -616,9 +616,6 @@ Item { onCursorRectangleChanged: { ensureVisible(y + cursorRectangle.y) } - onContentHeightChanged: { - console.log("content height changed") - } // ensure that the y coordinate is inside the visible part of the detailsEditFlickable (our flickable) function ensureVisible(yDest) { 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 diff --git a/mobile-widgets/qml/SsrfTextField.qml b/mobile-widgets/qml/SsrfTextField.qml index deba32a56..d91e13c2d 100644 --- a/mobile-widgets/qml/SsrfTextField.qml +++ b/mobile-widgets/qml/SsrfTextField.qml @@ -44,7 +44,8 @@ Controls.TextField { // make sure there's enough space for the input field above the keyboard and action button (and that it's not too far up, either) var positionInFlickable = stf.mapToItem(flickable.contentItem, 0, 0) var stfY = positionInFlickable.y - console.log("position check: lower edge of view is " + (0 + flickable.contentY + flickable.height) + " and text field is at " + stfY) + if (verbose) + manager.appendTextToLogFile("position check: lower edge of view is " + (0 + flickable.contentY + flickable.height) + " and text field is at " + stfY) if (stfY + stf.height > flickable.contentY + flickable.height - 3 * Kirigami.Units.gridUnit || stfY < flickable.contentY) flickable.contentY = Math.max(0, 3 * Kirigami.Units.gridUnit + stfY + stf.height - flickable.height) } diff --git a/mobile-widgets/qml/StatisticsPage.qml b/mobile-widgets/qml/StatisticsPage.qml index 6b02b0401..72a50602f 100644 --- a/mobile-widgets/qml/StatisticsPage.qml +++ b/mobile-widgets/qml/StatisticsPage.qml @@ -212,14 +212,9 @@ Kirigami.Page { statisticsPage.height - 2 * Kirigami.Units.gridUnit - i4.height Layout.maximumWidth: wide ? statisticsPage.width - 2 * Kirigami.Units.gridUnit - i4.width : statisticsPage.width - 2 * Kirigami.Units.smallSpacing - - onWidthChanged: { - console.log("StatsView widget width is " + width + " on page with width " + statisticsPage.width) - } } } Component.onCompleted: { statsManager.init(statsView, chartListModel) - console.log("Statistics widget loaded") } } |