diff options
Diffstat (limited to 'mobile-widgets/qml')
-rw-r--r-- | mobile-widgets/qml/DownloadFromDiveComputer.qml | 2 | ||||
-rw-r--r-- | mobile-widgets/qml/Settings.qml | 32 |
2 files changed, 1 insertions, 33 deletions
diff --git a/mobile-widgets/qml/DownloadFromDiveComputer.qml b/mobile-widgets/qml/DownloadFromDiveComputer.qml index 1fd374b4a..268a2aa69 100644 --- a/mobile-widgets/qml/DownloadFromDiveComputer.qml +++ b/mobile-widgets/qml/DownloadFromDiveComputer.qml @@ -34,7 +34,7 @@ Kirigami.Page { deviceData.deviceId : 0 deviceData.diveId : 0 deviceData.saveDump : false - deviceData.saveLog : false + deviceData.saveLog : true onFinished : { importModel.repopulate() diff --git a/mobile-widgets/qml/Settings.qml b/mobile-widgets/qml/Settings.qml index 6f1ad3486..40ee2ea08 100644 --- a/mobile-widgets/qml/Settings.qml +++ b/mobile-widgets/qml/Settings.qml @@ -307,38 +307,6 @@ Kirigami.ScrollablePage { Layout.fillWidth: true } GridLayout { - id: libdclogprefs - columns: 2 - width: parent.width - Kirigami.Heading { - text: qsTr("Dive computer") - color: subsurfaceTheme.textColor - level: 4 - Layout.topMargin: Kirigami.Units.largeSpacing - Layout.bottomMargin: Kirigami.Units.largeSpacing / 2 - Layout.columnSpan: 2 - } - - Controls.Label { - text: qsTr("Save detailed log") - Layout.preferredWidth: gridWidth * 0.75 - } - SsrfSwitch { - id: libdclogButton - checked: manager.libdcLog - Layout.preferredWidth: gridWidth * 0.25 - onClicked: { - manager.libdcLog = checked - } - } - } - Rectangle { - color: subsurfaceTheme.darkerPrimaryColor - height: 1 - opacity: 0.5 - Layout.fillWidth: true - } - GridLayout { id: developer columns: 2 width: parent.width - Kirigami.Units.gridUnit |