Fix logical error in separated/intermixed sidebar settings

This commit is contained in:
Nate Graham
2020-11-23 10:45:49 -07:00
parent 135150f4cc
commit 17ceb59a71

View File

@@ -25,13 +25,13 @@ Kirigami.ScrollablePage {
QQC2.RadioButton {
Kirigami.FormData.label: i18n("Rooms and private chats:")
text: i18n("Separated")
checked: Config.mergeRoomList
onToggled: Config.mergeRoomList = true
}
QQC2.RadioButton {
text: i18n("Intermixed")
checked: !Config.mergeRoomList
onToggled: Config.mergeRoomList = false
}
QQC2.RadioButton {
text: i18n("Intermixed")
checked: Config.mergeRoomList
onToggled: Config.mergeRoomList = true
}
}
}