fix(@desktop/profile): fix bug in switch buttons for privacy settings
This bug was introduced with the profile refactor to use stores. Due to copy and paste, the wrong expression is used in the settings to display chat images. This commit corrects that.
This commit is contained in:
parent
166118d49c
commit
20af5435a5
|
@ -187,7 +187,7 @@ Item {
|
|||
}
|
||||
]
|
||||
sensor.onClicked: {
|
||||
switch2.checked = appSettings.onlyShowContactsProfilePics = !switch2.checked
|
||||
switch2.checked = appSettings.displayChatImages = !switch2.checked
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue