summary refs log tree commit diff
path: root/resources/qml/ReplyPopup.qml
diff options
context:
space:
mode:
Diffstat (limited to 'resources/qml/ReplyPopup.qml')
-rw-r--r--resources/qml/ReplyPopup.qml16
1 files changed, 1 insertions, 15 deletions
diff --git a/resources/qml/ReplyPopup.qml b/resources/qml/ReplyPopup.qml
index ce24297c..64c58e56 100644
--- a/resources/qml/ReplyPopup.qml
+++ b/resources/qml/ReplyPopup.qml
@@ -29,22 +29,8 @@ Rectangle {
         anchors.rightMargin: replyPopup.width < 450 ? 2 * (22 + 16) : 3 * (22 + 16)
         anchors.top: parent.top
         anchors.topMargin: Nheko.paddingSmall
-        blurhash: modelData.blurhash ?? ""
-        body: modelData.body ?? ""
-        encryptionError: modelData.encryptionError ?? 0
-        eventId: modelData.eventId ?? ""
-        filename: modelData.filename ?? ""
-        filesize: modelData.filesize ?? ""
-        formattedBody: modelData.formattedBody ?? ""
-        isOnlyEmoji: modelData.isOnlyEmoji ?? false
-        originalWidth: modelData.originalWidth ?? 0
-        proportionalHeight: modelData.proportionalHeight ?? 1
-        type: modelData.type ?? MtxEvent.UnknownMessage
-        typeString: modelData.typeString ?? ""
-        url: modelData.url ?? ""
+        eventId: room.reply ?? ""
         userColor: TimelineManager.userColor(modelData.userId, palette.window)
-        userId: modelData.userId ?? ""
-        userName: modelData.userName ?? ""
         visible: room && room.reply
         width: parent.width
     }