Add option to show all rooms in "uncategorized" tab
This commit is contained in:
@@ -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")
|
||||
|
||||
Reference in New Issue
Block a user