diff options
author | Nicolas Werner <nicolas.werner@hotmail.de> | 2020-01-23 20:59:17 +0100 |
---|---|---|
committer | Nicolas Werner <nicolas.werner@hotmail.de> | 2020-01-23 20:59:17 +0100 |
commit | e9267ffc7617cfbeb26c62cde3c28f33a898161c (patch) | |
tree | 5574fd034b6966131e8bae9bab535a07b8f62c6a /resources | |
parent | Remove loggin of encrypted message body (diff) | |
download | nheko-e9267ffc7617cfbeb26c62cde3c28f33a898161c.tar.xz |
Show event type string in placeholder
Diffstat (limited to 'resources')
-rw-r--r-- | resources/qml/delegates/Placeholder.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/qml/delegates/Placeholder.qml b/resources/qml/delegates/Placeholder.qml index 36d7b2bc..26de2067 100644 --- a/resources/qml/delegates/Placeholder.qml +++ b/resources/qml/delegates/Placeholder.qml @@ -1,7 +1,7 @@ import ".." MatrixText { - text: qsTr("unimplemented event: ") + model.data.type + text: qsTr("unimplemented event: ") + model.data.typeString width: parent ? parent.width : undefined color: inactiveColors.text } |