mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-22 11:00:48 +03:00
Fix a few jdenticon bugs
This commit is contained in:
parent
d6eeaa1c04
commit
c7545cb455
2 changed files with 3 additions and 2 deletions
|
@ -38,7 +38,7 @@ ApplicationWindow {
|
|||
|
||||
Avatar {
|
||||
url: roomSettings.roomAvatarUrl.replace("mxc://", "image://MxcImage/")
|
||||
roomid: roomSettings.roomid
|
||||
roomid: roomSettings.roomId
|
||||
displayName: roomSettings.roomName
|
||||
height: 130
|
||||
width: 130
|
||||
|
|
|
@ -101,6 +101,7 @@ ApplicationWindow {
|
|||
required property string displayName
|
||||
required property bool fromAccountData
|
||||
required property bool fromCurrentRoom
|
||||
required property string statekey
|
||||
|
||||
title: displayName
|
||||
subtitle: {
|
||||
|
@ -112,7 +113,7 @@ ApplicationWindow {
|
|||
return qsTr("Globally enabled pack");
|
||||
}
|
||||
selectedIndex: currentPackIndex
|
||||
roomid: currentPack.statekey
|
||||
roomid: statekey
|
||||
|
||||
TapHandler {
|
||||
onSingleTapped: currentPackIndex = index
|
||||
|
|
Loading…
Reference in a new issue