diff options
Diffstat (limited to 'mobile-widgets/qml/DownloadFromDiveComputer.qml')
-rw-r--r-- | mobile-widgets/qml/DownloadFromDiveComputer.qml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/mobile-widgets/qml/DownloadFromDiveComputer.qml b/mobile-widgets/qml/DownloadFromDiveComputer.qml index 4587f2e98..a8f052626 100644 --- a/mobile-widgets/qml/DownloadFromDiveComputer.qml +++ b/mobile-widgets/qml/DownloadFromDiveComputer.qml @@ -44,6 +44,14 @@ Kirigami.Page { deviceData.diveId : 0 deviceData.saveDump : false deviceData.saveLog : false + + onFinished : { + importModel.repopulate() + } + } + + DCImportModel { + id: importModel } ColumnLayout { @@ -98,6 +106,8 @@ Kirigami.Page { Layout.fillWidth: true // The tableview should fill Layout.fillHeight: true // all remaining vertical space height: parent.height // on this screen + model : importModel + QQC1.TableViewColumn { width: parent.width / 2 role: "datetime" |