summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--mobile-widgets/qml/DiveList.qml1
-rw-r--r--mobile-widgets/qml/main.qml2
2 files changed, 0 insertions, 3 deletions
diff --git a/mobile-widgets/qml/DiveList.qml b/mobile-widgets/qml/DiveList.qml
index 4fb38450d..22369a331 100644
--- a/mobile-widgets/qml/DiveList.qml
+++ b/mobile-widgets/qml/DiveList.qml
@@ -43,7 +43,6 @@ Kirigami.ScrollablePage {
}
}
onVisibleChanged: {
- console.log("---> DiveList changed visibility to " + visible)
if (visible) {
page.actions.main = page.downloadFromDCAction
page.actions.right = page.addDiveAction
diff --git a/mobile-widgets/qml/main.qml b/mobile-widgets/qml/main.qml
index b8ef213fb..a7262c57d 100644
--- a/mobile-widgets/qml/main.qml
+++ b/mobile-widgets/qml/main.qml
@@ -780,7 +780,6 @@ if you have network connectivity and want to sync your data to cloud storage."),
Behavior on opacity { NumberAnimation { duration: Kirigami.Units.shortDuration } }
onVisibleChanged: {
- console.log("---> Startpage changed visibility to " + visible)
if (visible) {
pageStack.clear()
diveList.visible = false
@@ -791,7 +790,6 @@ if you have network connectivity and want to sync your data to cloud storage."),
Component.onCompleted: {
if (!visible) {
- console.log("---> Startpage change to diveList")
pageStack.initPage = diveList
}
}