summary refs log tree commit diff
path: root/resources/qml/dialogs/ImagePackSettingsDialog.qml
diff options
context:
space:
mode:
authorLoren Burkholder <computersemiexpert@outlook.com>2021-09-06 21:14:45 -0400
committerLoren Burkholder <computersemiexpert@outlook.com>2021-09-11 19:35:31 -0400
commit8e5f91a5796f7a18569d9cce5a2057725a8e465d (patch)
tree8bb375daf2b920cf722136d85b4c393591f9974b /resources/qml/dialogs/ImagePackSettingsDialog.qml
parentRemove useless line (diff)
downloadnheko-8e5f91a5796f7a18569d9cce5a2057725a8e465d.tar.xz
Use better jdenticon codes/id settings
Diffstat (limited to '')
-rw-r--r--resources/qml/dialogs/ImagePackSettingsDialog.qml5
1 files changed, 3 insertions, 2 deletions
diff --git a/resources/qml/dialogs/ImagePackSettingsDialog.qml b/resources/qml/dialogs/ImagePackSettingsDialog.qml

index 4aee4a78..ca09ff27 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 - userid: displayName + roomid: currentPack.statekey TapHandler { onSingleTapped: currentPackIndex = index @@ -136,6 +136,7 @@ ApplicationWindow { property string packName: currentPack ? currentPack.packname : "" property string attribution: currentPack ? currentPack.attribution : "" property string avatarUrl: currentPack ? currentPack.avatarUrl : "" + property string statekey: currentPack ? currentPack.statekey : "" anchors.fill: parent anchors.margins: Nheko.paddingLarge @@ -144,7 +145,7 @@ ApplicationWindow { Avatar { url: packinfo.avatarUrl.replace("mxc://", "image://MxcImage/") displayName: packinfo.packName - userid: packinfo.packName + roomid: packinfo.statekey height: 100 width: 100 Layout.alignment: Qt.AlignHCenter