diff options
author | DeepBlueV7.X <nicolas.werner@hotmail.de> | 2021-08-01 10:51:21 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-01 10:51:21 +0000 |
commit | 619525e62f55ca683b4a8be7a8868bc42d7edc4e (patch) | |
tree | d6f9ca51c9ad043ff58a6dac3cebd14aeecaaf8e /resources/qml/TimelineView.qml | |
parent | Add option to only send encrypted messages to verified devices (diff) | |
parent | Fix colors for manual dark theme (diff) | |
download | nheko-619525e62f55ca683b4a8be7a8868bc42d7edc4e.tar.xz |
Merge pull request #662 from LorenDB/qml-all-the-things
QML all the things, part 3: Raw message dialog
Diffstat (limited to 'resources/qml/TimelineView.qml')
-rw-r--r-- | resources/qml/TimelineView.qml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/resources/qml/TimelineView.qml b/resources/qml/TimelineView.qml index d19f2cc9..e4036eb7 100644 --- a/resources/qml/TimelineView.qml +++ b/resources/qml/TimelineView.qml @@ -258,6 +258,13 @@ Item { dialog.show(); } + function onShowRawMessageDialog(rawMessage) { + var dialog = rawMessageDialog.createObject(timelineRoot, { + "rawMessage": rawMessage + }); + dialog.show(); + } + target: room } |