Add option to toggle the display of users avatar in timeline on and off

This commit is contained in:
Carl Schwan
2020-12-02 18:25:29 +01:00
parent 1d5f1633bd
commit 8a3659efba
4 changed files with 15 additions and 3 deletions

View File

@@ -40,5 +40,11 @@ Kirigami.ScrollablePage {
checked: Config.mergeRoomList
onToggled: Config.mergeRoomList = true
}
QQC2.CheckBox {
Kirigami.FormData.label: i18n("Timeline:")
text: i18n("Show User Avatar")
checked: Config.showAvatarInTimeline
onToggled: Config.showAvatarInTimeline = checked
}
}
}