Commit 3c84bfab authored by Gus Grubba's avatar Gus Grubba

Minor label tweaks

parent fe28ea83
...@@ -371,14 +371,14 @@ QGCView { ...@@ -371,14 +371,14 @@ QGCView {
spacing: _margins spacing: _margins
FactCheckBox { FactCheckBox {
id: enableLogging id: enableLogging
text: qsTr("Save telemetry logs to disk") text: qsTr("Save logs to disk")
fact: _enableLogging fact: _enableLogging
visible: _enableLogging.visible visible: _enableLogging.visible
property Fact _enableLogging: QGroundControl.settingsManager.appSettings.enableLocalLogging property Fact _enableLogging: QGroundControl.settingsManager.appSettings.enableLocalLogging
} }
FactCheckBox { FactCheckBox {
id: promptSaveLog id: promptSaveLog
text: qsTr("Save telemetry log after each flight") text: qsTr("Save log after each flight")
fact: _telemetrySave fact: _telemetrySave
visible: _telemetrySave.visible visible: _telemetrySave.visible
enabled: enableLogging.checked enabled: enableLogging.checked
...@@ -386,7 +386,7 @@ QGCView { ...@@ -386,7 +386,7 @@ QGCView {
} }
FactCheckBox { FactCheckBox {
id: logIfNotArmed id: logIfNotArmed
text: qsTr("Save telemetry logs even if vehicle was not armed") text: qsTr("Save logs even if vehicle was not armed")
fact: _telemetrySaveNotArmed fact: _telemetrySaveNotArmed
visible: _telemetrySaveNotArmed.visible visible: _telemetrySaveNotArmed.visible
enabled: promptSaveLog.checked && enableLogging.checked enabled: promptSaveLog.checked && enableLogging.checked
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment