Add option to show all rooms in "uncategorized" tab

This commit is contained in:
Tobias Fella
2024-04-15 21:02:57 +02:00
parent 5881db4e55
commit bb35e9ce15
5 changed files with 49 additions and 0 deletions

View File

@@ -64,6 +64,22 @@ FormCard.FormCardPage {
Config.save();
}
}
FormCard.FormDelegateSeparator {
above: automaticallyDelegate
below: categorizeDelegate
}
FormCard.FormCheckDelegate {
id: categorizeDelegate
text: i18n("Show all rooms in \"Home\" tab")
checked: Config.allRoomsInHome
enabled: !Config.isAllRoomsInHomeImmutable
onToggled: {
Config.allRoomsInHome = checked;
Config.save();
}
}
}
FormCard.FormHeader {
title: i18n("Room list sort order")