diff options
author | Nicolas Werner <nicolas.werner@hotmail.de> | 2023-08-25 20:43:04 +0200 |
---|---|---|
committer | Nicolas Werner <nicolas.werner@hotmail.de> | 2023-08-25 20:43:04 +0200 |
commit | b187440e68334b828d7271ac3d51dfd4fd24b18d (patch) | |
tree | aa9199968eb18245357128c1e51aac598d058257 /resources/qml/Reactions.qml | |
parent | Show reactions again (diff) | |
download | nheko-b187440e68334b828d7271ac3d51dfd4fd24b18d.tar.xz |
Reimplement reply delegate by moving out the timeline event without layout
Diffstat (limited to 'resources/qml/Reactions.qml')
-rw-r--r-- | resources/qml/Reactions.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/qml/Reactions.qml b/resources/qml/Reactions.qml index eff62fc1..5b994145 100644 --- a/resources/qml/Reactions.qml +++ b/resources/qml/Reactions.qml @@ -74,10 +74,10 @@ Flow { anchors.verticalCenter: divider.verticalCenter fillMode: Image.PreserveAspectFit height: textMetrics.height + mipmap: true source: modelData.key.startsWith("mxc://") ? (modelData.key.replace("mxc://", "image://MxcImage/") + "?scale") : "" visible: modelData.key.startsWith("mxc://") width: textMetrics.height - mipmap: true } Rectangle { id: divider |