Remove the option to merge the room list

This commit is contained in:
James Graham
2024-01-16 19:39:42 +00:00
parent e6980e2370
commit f963e06983
4 changed files with 4 additions and 31 deletions

View File

@@ -140,29 +140,6 @@ FormCard.FormCardPage {
}
}
}
FormCard.FormHeader {
title: i18n("Rooms and private chats")
}
FormCard.FormCard {
FormCard.FormRadioDelegate {
text: i18n("Separated")
checked: !Config.mergeRoomList
enabled: !Config.isMergeRoomListImmutable
onToggled: {
Config.mergeRoomList = false
Config.save()
}
}
FormCard.FormRadioDelegate {
text: i18n("Intermixed")
checked: Config.mergeRoomList
enabled: !Config.isMergeRoomListImmutable
onToggled: {
Config.mergeRoomList = true
Config.save()
}
}
}
FormCard.FormHeader {
title: i18nc("Chat Editor", "Editor")
}