From c01c638a493d0ddd5536238307f6fcaa6f0f06c6 Mon Sep 17 00:00:00 2001 From: James Graham Date: Wed, 13 Sep 2023 18:46:41 +0000 Subject: [PATCH] Fix file menu Pass file menu eventSource rather than source and htmlText --- src/qml/Component/Timeline/TimelineContainer.qml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/qml/Component/Timeline/TimelineContainer.qml b/src/qml/Component/Timeline/TimelineContainer.qml index 343e35a48..7e8dec638 100644 --- a/src/qml/Component/Timeline/TimelineContainer.qml +++ b/src/qml/Component/Timeline/TimelineContainer.qml @@ -609,10 +609,11 @@ ColumnLayout { const contextMenu = fileDelegateContextMenu.createObject(root, { author: root.author, eventId: root.eventId, - source: root.jsonSource, + eventSource: root.jsonSource, file: file, progressInfo: root.progressInfo, plainText: root.plainText, + htmlText: root.display, connection: root.connection, }); contextMenu.open();