mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
mobile-widgets/qml: add General section to Settings
ColumnLayout does not work well with TemplateSection, so change to Column Add TemplateSection "General Settings" "General Settings" are open when visiting page first time. Signed-off-by: jan Iversen <jan@casacondor.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
8ee39aa6b6
commit
12631ef2bb
1 changed files with 9 additions and 1 deletions
|
@ -20,8 +20,16 @@ Kirigami.ScrollablePage {
|
||||||
qsTr("Credentials verified"),
|
qsTr("Credentials verified"),
|
||||||
qsTr("No cloud mode")]
|
qsTr("No cloud mode")]
|
||||||
|
|
||||||
ColumnLayout {
|
Column {
|
||||||
width: gridWidth
|
width: gridWidth
|
||||||
|
|
||||||
|
TemplateSection {
|
||||||
|
id: sectionGeneral
|
||||||
|
title: qsTr("General settings")
|
||||||
|
isExpanded: true
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
GridLayout {
|
GridLayout {
|
||||||
id: cloudSetting
|
id: cloudSetting
|
||||||
columns: 3
|
columns: 3
|
||||||
|
|
Loading…
Add table
Reference in a new issue