diff options
author | Nicolas Werner <nicolas.werner@hotmail.de> | 2023-10-09 21:41:00 +0200 |
---|---|---|
committer | Nicolas Werner <nicolas.werner@hotmail.de> | 2023-10-09 21:41:00 +0200 |
commit | b0df40496d6c9b53eeb29e9d67b944f8e1fb8dd5 (patch) | |
tree | 6a123cdc9c52770e6e97c628147cb977d6b5ff62 /resources/qml/delegates/PlayableMediaMessage.qml | |
parent | Basic bubble style (diff) | |
download | nheko-b0df40496d6c9b53eeb29e9d67b944f8e1fb8dd5.tar.xz |
Shrink replies
Diffstat (limited to '')
-rw-r--r-- | resources/qml/delegates/PlayableMediaMessage.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/qml/delegates/PlayableMediaMessage.qml b/resources/qml/delegates/PlayableMediaMessage.qml index ac4a82b0..99928369 100644 --- a/resources/qml/delegates/PlayableMediaMessage.qml +++ b/resources/qml/delegates/PlayableMediaMessage.qml @@ -22,7 +22,7 @@ Item { required property string url required property string body required property string filesize - property double divisor: EventDelegateChooser.isReply ? 5 : 3 + property double divisor: EventDelegateChooser.isReply ? 10 : 4 property int tempWidth: originalWidth < 1? 400: originalWidth implicitWidth: type == MtxEvent.VideoMessage ? Math.round(tempWidth*Math.min((timelineView.height/divisor)/(tempWidth*proportionalHeight), 1)) : 500 width: Math.min(parent?.width ?? implicitWidth, implicitWidth) |