diff options
author | Nicolas Werner <nicolas.werner@hotmail.de> | 2019-09-08 15:26:46 +0200 |
---|---|---|
committer | Nicolas Werner <nicolas.werner@hotmail.de> | 2019-11-23 20:06:14 +0100 |
commit | 7aca8a94304b47904f214325b969c115944296c8 (patch) | |
tree | 2b52c4c4484739052f1675381ef01515112aa77a /resources/qml/TimelineView.qml | |
parent | Implement basic ImageMessages in qml timeline (diff) | |
download | nheko-7aca8a94304b47904f214325b969c115944296c8.tar.xz |
Reenable view raw message
Diffstat (limited to 'resources/qml/TimelineView.qml')
-rw-r--r-- | resources/qml/TimelineView.qml | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/resources/qml/TimelineView.qml b/resources/qml/TimelineView.qml index 399e85eb..36701c72 100644 --- a/resources/qml/TimelineView.qml +++ b/resources/qml/TimelineView.qml @@ -42,11 +42,9 @@ Rectangle { anchors.left: parent.left anchors.right: parent.right anchors.rightMargin: scrollbar.width - height: loader.height Loader { id: loader - asynchronous: false Layout.fillWidth: true Layout.alignment: Qt.AlignTop height: item.height @@ -135,6 +133,7 @@ Rectangle { } MenuItem { text: "View raw message" + onTriggered: chat.model.viewRawMessage(model.id) } MenuItem { text: "Redact message" |