From f915c45c431b2fdf6bc8d6ae6c803d916cd78570 Mon Sep 17 00:00:00 2001 From: Dirk Hohndel Date: Sun, 9 Feb 2020 21:16:22 -0800 Subject: [PATCH] mobile/summary: remove some debug output I don't think we need that anymore. Signed-off-by: Dirk Hohndel --- mobile-widgets/qml/DiveSummary.qml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/mobile-widgets/qml/DiveSummary.qml b/mobile-widgets/qml/DiveSummary.qml index ef8892976..36f8442fd 100644 --- a/mobile-widgets/qml/DiveSummary.qml +++ b/mobile-widgets/qml/DiveSummary.qml @@ -181,12 +181,6 @@ Kirigami.ScrollablePage { delegate: rowDelegate section.property: "section" section.delegate: sectionDelegate - Component.onCompleted: { - manager.appendTextToLog("SUMMARY: width: " + width + " height: " + height + " rows: " + model.rowCount()) - } - onModelChanged: { - manager.appendTextToLog("SUMMARY model changed; now width: " + width + " height: " + height + " rows: " + model.rowCount()) - } } } }