diff --git a/mobile-widgets/qml/DiveSummary.qml b/mobile-widgets/qml/DiveSummary.qml index d55443815..ad6d30372 100644 --- a/mobile-widgets/qml/DiveSummary.qml +++ b/mobile-widgets/qml/DiveSummary.qml @@ -15,6 +15,16 @@ Kirigami.ScrollablePage { if (visible) Backend.summaryCalculation(selectionPrimary.currentIndex, selectionSecondary.currentIndex) } + Connections { + target: Backend + onLengthChanged: { + Backend.summaryCalculation(selectionPrimary.currentIndex, selectionSecondary.currentIndex) + } + onVolumeChanged: { + Backend.summaryCalculation(selectionPrimary.currentIndex, selectionSecondary.currentIndex) + } + } + GridLayout { columns: 3