summary refs log tree commit diff
diff options
context:
space:
mode:
authorNicolas Werner <nicolas.werner@hotmail.de>2021-01-04 15:10:53 +0100
committerNicolas Werner <nicolas.werner@hotmail.de>2021-01-04 15:14:40 +0100
commit5ca043ad87d56cfaa984f67b84c5e98f1900c61e (patch)
treec7460d0b4d4c725d7952dd47200bc7e0658faefd
parentlint (diff)
downloadnheko-5ca043ad87d56cfaa984f67b84c5e98f1900c61e.tar.xz
Fix user status that got lost at some point
-rw-r--r--resources/qml/MessageView.qml9
1 files changed, 9 insertions, 0 deletions
diff --git a/resources/qml/MessageView.qml b/resources/qml/MessageView.qml

index 679c1f50..aa222ac5 100644 --- a/resources/qml/MessageView.qml +++ b/resources/qml/MessageView.qml
@@ -140,6 +140,15 @@ ListView { } + Label { + color: colors.buttonText + text: TimelineManager.userStatus(modelData.userId) + textFormat: Text.PlainText + elide: Text.ElideRight + width: chat.delegateMaxWidth - parent.spacing * 2 - userName.implicitWidth - avatarSize + font.italic: true + } + } }