summary refs log tree commit diff
path: root/resources/qml/voip/ActiveCallBar.qml
diff options
context:
space:
mode:
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" }