diff options
-rw-r--r-- | mobile-widgets/qml/Settings.qml | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/mobile-widgets/qml/Settings.qml b/mobile-widgets/qml/Settings.qml index b7d5dd0d7..271577eae 100644 --- a/mobile-widgets/qml/Settings.qml +++ b/mobile-widgets/qml/Settings.qml @@ -603,6 +603,44 @@ TemplatePage { visible: sectionAdvanced.isExpanded } GridLayout { + id: profilePrefs + visible: sectionAdvanced.isExpanded + width: parent.width + columns: 2 + TemplateLabel { + text: qsTr("Profile deco ceiling") + font.pointSize: subsurfaceTheme.headingPointSize + font.weight: Font.Light + Layout.topMargin: Kirigami.Units.largeSpacing + Layout.bottomMargin: Kirigami.Units.largeSpacing / 2 + Layout.columnSpan: 2 + } + TemplateLabel { + text: qsTr("Show DC reported ceiling") + } + SsrfSwitch { + checked: PrefTechnicalDetails.dcceiling + onClicked: { + PrefTechnicalDetails.dcceiling = checked + rootItem.settingChanged() + } + } + TemplateLabel { + text: qsTr("Show calculated ceiling") + } + SsrfSwitch { + checked: PrefTechnicalDetails.calcceiling + onClicked: { + PrefTechnicalDetails.calcceiling = checked + rootItem.settingsChanged() + } + } + } + TemplateLine { + visible: sectionAdvanced.isExpanded + } + + GridLayout { id: developer visible: sectionAdvanced.isExpanded width: parent.width |