Skip to content
Snippets Groups Projects
Commit a179a9ae authored by Andreas Traczyk's avatar Andreas Traczyk
Browse files

settings: fix item item visibility

Gitlab: #1127

Change-Id: I447adb4b9d62eae4d21b6d886dba86f05dbc3fde
parent 193b125c
No related branches found
No related tags found
No related merge requests found
...@@ -114,8 +114,16 @@ SidePanelBase { ...@@ -114,8 +114,16 @@ SidePanelBase {
function updateModel() { function updateModel() {
if (visible) { if (visible) {
listView.model = {} listView.model = {};
listView.model = getHeaders() listView.model = getHeaders();
}
}
Connections {
target: CurrentAccount
function onTypeChanged() {
updateModel();
} }
} }
...@@ -123,7 +131,7 @@ SidePanelBase { ...@@ -123,7 +131,7 @@ SidePanelBase {
target: UtilsAdapter target: UtilsAdapter
function onChangeLanguage() { function onChangeLanguage() {
updateModel() updateModel();
} }
} }
...@@ -131,20 +139,20 @@ SidePanelBase { ...@@ -131,20 +139,20 @@ SidePanelBase {
Connections { Connections {
target: JamiQmlUtils target: JamiQmlUtils
function onSettingsPageRequested(index) { function onSettingsPageRequested(index) {
viewCoordinator.present("SettingsView") viewCoordinator.present("SettingsView");
root.indexSelected(index) root.indexSelected(index);
root.currentIndex = index root.currentIndex = index;
} }
} }
onIsSinglePaneChanged: { onIsSinglePaneChanged: {
if (visible && !isSinglePane) if (visible && !isSinglePane)
select(root.currentIndex) select(root.currentIndex);
} }
function open(index) { function open(index) {
indexSelected(index) indexSelected(index);
root.currentIndex = index root.currentIndex = index;
} }
function deselect() { function deselect() {
...@@ -154,8 +162,8 @@ SidePanelBase { ...@@ -154,8 +162,8 @@ SidePanelBase {
function select(index) { function select(index) {
if (!root.isSinglePane) if (!root.isSinglePane)
indexSelected(index) indexSelected(index);
root.currentIndex = index root.currentIndex = index;
} }
Page { Page {
...@@ -179,9 +187,11 @@ SidePanelBase { ...@@ -179,9 +187,11 @@ SidePanelBase {
delegate: ColumnLayout { delegate: ColumnLayout {
id: col id: col
width: page.width width: page.width
spacing: 0
property bool isChildSelected: root.currentIndex >= modelData.first && root.currentIndex <= modelData.last property bool isChildSelected: root.currentIndex >= modelData.first && root.currentIndex <= modelData.last
PushButton { PushButton {
id: sectionHeader
buttonText: modelData.title buttonText: modelData.title
circled: false circled: false
radius: 0 radius: 0
...@@ -225,12 +235,13 @@ SidePanelBase { ...@@ -225,12 +235,13 @@ SidePanelBase {
delegate: ColumnLayout { delegate: ColumnLayout {
id: childCol id: childCol
width: childListView.width width: childListView.width
property bool isSelected: root.currentIndex == modelData.id spacing: 0
property bool isSelected: root.currentIndex === modelData.id
PushButton { PushButton {
visible: modelData.visible !== undefined ? modelData.visible : true
buttonText: modelData.title buttonText: modelData.title
circled: false circled: false
radius: 0 radius: 0
visible: modelData.visible ? modelData.visible : true
alignement: Text.AlignLeft alignement: Text.AlignLeft
Layout.preferredWidth: parent.width - 28 Layout.preferredWidth: parent.width - 28
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment