Skycoder42
7 years ago
No known key found for this signature in database
GPG Key ID: 8E01AD9EF0578D2B
1 changed files with
21 additions and
8 deletions
-
src/imports/mvvmquick/SettingsView.qml
|
|
@ -230,6 +230,12 @@ Page { |
|
|
|
Component { |
|
|
|
id: _overviewComponent |
|
|
|
|
|
|
|
ScrollView { |
|
|
|
property alias model: __ovListView.model |
|
|
|
property alias showSections: __ovListView.showSections |
|
|
|
anchors.fill: parent |
|
|
|
clip: true |
|
|
|
|
|
|
|
OverviewListView { |
|
|
|
id: __ovListView |
|
|
|
builder: _builder |
|
|
@ -237,10 +243,16 @@ Page { |
|
|
|
Component.onCompleted: _settingsStack.push(__ovListView) |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
Component { |
|
|
|
id: _sectionViewComponent |
|
|
|
|
|
|
|
ScrollView { |
|
|
|
property alias model: __secListView.model |
|
|
|
anchors.fill: parent |
|
|
|
clip: true |
|
|
|
|
|
|
|
SectionListView { |
|
|
|
id: __secListView |
|
|
|
builder: _builder |
|
|
@ -248,6 +260,7 @@ Page { |
|
|
|
Component.onCompleted: _settingsStack.push(__secListView) |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
SettingsUiBuilder { |
|
|
|
id: _builder |
|
|
|