Fix compact mode with new pane

This commit is contained in:
miruka 2020-05-01 01:22:08 -04:00
parent 0d25c4caeb
commit bf20b7864d
3 changed files with 3 additions and 2 deletions

View File

@ -4,9 +4,9 @@
- add account number binds - add account number binds
- rename goto*account → scrollto*account - rename goto*account → scrollto*account
- fix interrupted transitions
- fix back/front buttons in small window - fix back/front buttons in small window
- fix message delegate too tall - fix message delegate too tall
- fix compact mode
- fix left rooms opacity - fix left rooms opacity
- fix escape keybinds (filter rooms, message selection) - fix escape keybinds (filter rooms, message selection)

View File

@ -21,6 +21,7 @@ HTile {
displayName: accountModel.display_name displayName: accountModel.display_name
mxc: accountModel.avatar_url mxc: accountModel.avatar_url
radius: 0 radius: 0
compact: account.compact
} }
TitleLabel { TitleLabel {

View File

@ -75,7 +75,7 @@ HColumnLayout {
userId: model.id userId: model.id
displayName: model.display_name displayName: model.display_name
mxc: model.avatar_url mxc: model.avatar_url
// compact: account.compact // compact: tile.compact
radius: theme.accountsBar.accountList.account.avatarRadius radius: theme.accountsBar.accountList.account.avatarRadius
} }