summary refs log tree commit diff
path: root/resources/qml/voip/ActiveCallBar.qml
diff options
context:
space:
mode:
authorDeepBlueV7.X <nicolas.werner@hotmail.de>2021-09-13 21:31:29 +0000
committerGitHub <noreply@github.com>2021-09-13 21:31:29 +0000
commit8e2f1e9dcefb3ea8b0706e0306fdb3a16796ce9c (patch)
treec90f73c51f8ddbe22d17d3d1d43f0a107360882f /resources/qml/voip/ActiveCallBar.qml
parentUpdate translation files (diff)
parentStreamline getting other user id from invited direct chat (diff)
downloadnheko-8e2f1e9dcefb3ea8b0706e0306fdb3a16796ce9c.tar.xz
Merge pull request #416 from LorenDB/jdenticon
Add jdenticon support
Diffstat (limited to 'resources/qml/voip/ActiveCallBar.qml')
-rw-r--r--resources/qml/voip/ActiveCallBar.qml5
1 files changed, 3 insertions, 2 deletions
diff --git a/resources/qml/voip/ActiveCallBar.qml b/resources/qml/voip/ActiveCallBar.qml

index d44c5edf..be698356 100644 --- a/resources/qml/voip/ActiveCallBar.qml +++ b/resources/qml/voip/ActiveCallBar.qml
@@ -34,14 +34,15 @@ Rectangle { width: Nheko.avatarSize height: Nheko.avatarSize url: CallManager.callPartyAvatarUrl.replace("mxc://", "image://MxcImage/") - displayName: CallManager.callParty + userid: CallManager.callParty + displayName: CallManager.callPartyDisplayName onClicked: TimelineManager.openImageOverlay(room.avatarUrl(userid), room.data.eventId) } Label { Layout.leftMargin: 8 font.pointSize: fontMetrics.font.pointSize * 1.1 - text: CallManager.callParty + text: CallManager.callPartyDisplayName color: "#000000" }