mobile-widgets/qml: remove console messages

Remove console.log messagees used to test the
split of startpage/divelist.

Signed-off-by: Jan Iversen <jan@casacondor.com>
This commit is contained in:
jan Iversen 2019-12-25 19:44:37 +01:00 committed by Dirk Hohndel
parent 3dbdd2ee5e
commit 9c74ac23a5
2 changed files with 0 additions and 3 deletions

View file

@ -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

View file

@ -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
}
}