diff options
author | Loren Burkholder <computersemiexpert@outlook.com> | 2021-09-04 20:54:02 -0400 |
---|---|---|
committer | Loren Burkholder <computersemiexpert@outlook.com> | 2021-09-11 19:35:31 -0400 |
commit | 17729ce662528be1949b3157513d9c4a1db987de (patch) | |
tree | 55045f09013c110909836692560f5d9b64040a46 /resources | |
parent | Use more descriptive property name (diff) | |
download | nheko-17729ce662528be1949b3157513d9c4a1db987de.tar.xz |
Fix jdenticons in various places
Diffstat (limited to 'resources')
-rw-r--r-- | resources/qml/dialogs/ImagePackEditorDialog.qml | 4 | ||||
-rw-r--r-- | resources/qml/dialogs/ImagePackSettingsDialog.qml | 3 | ||||
-rw-r--r-- | resources/qml/voip/ActiveCallBar.qml | 4 | ||||
-rw-r--r-- | resources/qml/voip/CallInvite.qml | 5 | ||||
-rw-r--r-- | resources/qml/voip/CallInviteBar.qml | 5 |
5 files changed, 13 insertions, 8 deletions
diff --git a/resources/qml/dialogs/ImagePackEditorDialog.qml b/resources/qml/dialogs/ImagePackEditorDialog.qml index 9125e560..f927a745 100644 --- a/resources/qml/dialogs/ImagePackEditorDialog.qml +++ b/resources/qml/dialogs/ImagePackEditorDialog.qml @@ -61,6 +61,7 @@ ApplicationWindow { header: AvatarListTile { title: imagePack.packname avatarUrl: imagePack.avatarUrl + userid: imagePack.packname subtitle: imagePack.statekey index: -1 selectedIndex: currentImageIndex @@ -111,7 +112,6 @@ ApplicationWindow { title: shortCode subtitle: body avatarUrl: url - roomid: imagePack.roomid selectedIndex: currentImageIndex crop: false @@ -143,6 +143,7 @@ ApplicationWindow { Layout.columnSpan: 2 url: imagePack.avatarUrl.replace("mxc://", "image://MxcImage/") displayName: imagePack.packname + userid: imagePack.packname height: 130 width: 130 crop: false @@ -220,6 +221,7 @@ ApplicationWindow { Layout.columnSpan: 2 url: imagePack.data(imagePack.index(currentImageIndex, 0), SingleImagePackModel.Url).replace("mxc://", "image://MxcImage/") displayName: imagePack.data(imagePack.index(currentImageIndex, 0), SingleImagePackModel.ShortCode) + userid: displayName height: 130 width: 130 crop: false diff --git a/resources/qml/dialogs/ImagePackSettingsDialog.qml b/resources/qml/dialogs/ImagePackSettingsDialog.qml index 4cc7bcd3..4aee4a78 100644 --- a/resources/qml/dialogs/ImagePackSettingsDialog.qml +++ b/resources/qml/dialogs/ImagePackSettingsDialog.qml @@ -112,7 +112,7 @@ ApplicationWindow { return qsTr("Globally enabled pack"); } selectedIndex: currentPackIndex - roomid: currentPack.roomid + userid: displayName TapHandler { onSingleTapped: currentPackIndex = index @@ -144,6 +144,7 @@ ApplicationWindow { Avatar { url: packinfo.avatarUrl.replace("mxc://", "image://MxcImage/") displayName: packinfo.packName + userid: packinfo.packName height: 100 width: 100 Layout.alignment: Qt.AlignHCenter diff --git a/resources/qml/voip/ActiveCallBar.qml b/resources/qml/voip/ActiveCallBar.qml index c92b15c9..be698356 100644 --- a/resources/qml/voip/ActiveCallBar.qml +++ b/resources/qml/voip/ActiveCallBar.qml @@ -34,15 +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" } diff --git a/resources/qml/voip/CallInvite.qml b/resources/qml/voip/CallInvite.qml index 253fa25c..1bd5eb26 100644 --- a/resources/qml/voip/CallInvite.qml +++ b/resources/qml/voip/CallInvite.qml @@ -40,7 +40,7 @@ Popup { Label { Layout.alignment: Qt.AlignCenter Layout.topMargin: msgView.height / 25 - text: CallManager.callParty + text: CallManager.callPartyDisplayName font.pointSize: fontMetrics.font.pointSize * 2 color: Nheko.colors.windowText } @@ -50,7 +50,8 @@ Popup { width: msgView.height / 5 height: msgView.height / 5 url: CallManager.callPartyAvatarUrl.replace("mxc://", "image://MxcImage/") - displayName: CallManager.callParty + userid: CallManager.callParty + displayName: CallManager.callPartyDisplayName } ColumnLayout { diff --git a/resources/qml/voip/CallInviteBar.qml b/resources/qml/voip/CallInviteBar.qml index f6c1ecde..10f8367a 100644 --- a/resources/qml/voip/CallInviteBar.qml +++ b/resources/qml/voip/CallInviteBar.qml @@ -41,14 +41,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" } |