mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-26 04:58:49 +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 {
|
Avatar {
|
||||||
url: roomSettings.roomAvatarUrl.replace("mxc://", "image://MxcImage/")
|
url: roomSettings.roomAvatarUrl.replace("mxc://", "image://MxcImage/")
|
||||||
roomid: roomSettings.roomid
|
roomid: roomSettings.roomId
|
||||||
displayName: roomSettings.roomName
|
displayName: roomSettings.roomName
|
||||||
height: 130
|
height: 130
|
||||||
width: 130
|
width: 130
|
||||||
|
|
|
@ -101,6 +101,7 @@ ApplicationWindow {
|
||||||
required property string displayName
|
required property string displayName
|
||||||
required property bool fromAccountData
|
required property bool fromAccountData
|
||||||
required property bool fromCurrentRoom
|
required property bool fromCurrentRoom
|
||||||
|
required property string statekey
|
||||||
|
|
||||||
title: displayName
|
title: displayName
|
||||||
subtitle: {
|
subtitle: {
|
||||||
|
@ -112,7 +113,7 @@ ApplicationWindow {
|
||||||
return qsTr("Globally enabled pack");
|
return qsTr("Globally enabled pack");
|
||||||
}
|
}
|
||||||
selectedIndex: currentPackIndex
|
selectedIndex: currentPackIndex
|
||||||
roomid: currentPack.statekey
|
roomid: statekey
|
||||||
|
|
||||||
TapHandler {
|
TapHandler {
|
||||||
onSingleTapped: currentPackIndex = index
|
onSingleTapped: currentPackIndex = index
|
||||||
|
|
Loading…
Reference in a new issue