mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-24 12:08:50 +03:00
Fix reply backgrounds in images
This commit is contained in:
parent
55107ed0ce
commit
9ed0e887bd
1 changed files with 15 additions and 0 deletions
|
@ -137,6 +137,9 @@ EventDelegateChooser {
|
|||
roleValues: [MtxEvent.ImageMessage, MtxEvent.Sticker,]
|
||||
|
||||
ImageMessage {
|
||||
required property string userId
|
||||
required property string userName
|
||||
|
||||
Layout.fillWidth: true
|
||||
Layout.maximumWidth: tempWidth
|
||||
containerHeight: timelineView.height
|
||||
|
@ -146,6 +149,9 @@ EventDelegateChooser {
|
|||
roleValues: [MtxEvent.FileMessage,]
|
||||
|
||||
FileMessage {
|
||||
required property string userId
|
||||
required property string userName
|
||||
|
||||
Layout.fillWidth: true
|
||||
}
|
||||
}
|
||||
|
@ -153,6 +159,9 @@ EventDelegateChooser {
|
|||
roleValues: [MtxEvent.VideoMessage, MtxEvent.AudioMessage,]
|
||||
|
||||
PlayableMediaMessage {
|
||||
required property string userId
|
||||
required property string userName
|
||||
|
||||
Layout.fillWidth: true
|
||||
}
|
||||
}
|
||||
|
@ -160,6 +169,9 @@ EventDelegateChooser {
|
|||
roleValues: [MtxEvent.Encrypted,]
|
||||
|
||||
Encrypted {
|
||||
required property string userId
|
||||
required property string userName
|
||||
|
||||
Layout.fillWidth: true
|
||||
}
|
||||
}
|
||||
|
@ -167,6 +179,9 @@ EventDelegateChooser {
|
|||
roleValues: [MtxEvent.Encryption,]
|
||||
|
||||
EncryptionEnabled {
|
||||
required property string userId
|
||||
required property string userName
|
||||
|
||||
Layout.fillWidth: true
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue