mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-25 20:48:52 +03:00
Fix room member list
This commit is contained in:
parent
b6bbbdeae7
commit
bda88a0379
1 changed files with 6 additions and 4 deletions
|
@ -182,10 +182,10 @@ ApplicationWindow {
|
||||||
return "image://colorimage/:/icons/icons/ui/person.svg?";
|
return "image://colorimage/:/icons/icons/ui/person.svg?";
|
||||||
}
|
}
|
||||||
|
|
||||||
width: 16
|
Layout.preferredWidth: 16
|
||||||
height: 16
|
Layout.preferredHeight: 16
|
||||||
sourceSize.height: height * Screen.devicePixelRatio
|
sourceSize.width: width
|
||||||
sourceSize.width: width * Screen.devicePixelRatio
|
sourceSize.height: height
|
||||||
source: sourceUrl + (ma.hovered ? Nheko.colors.highlight : Nheko.colors.buttonText)
|
source: sourceUrl + (ma.hovered ? Nheko.colors.highlight : Nheko.colors.buttonText)
|
||||||
ToolTip.visible: ma.hovered
|
ToolTip.visible: ma.hovered
|
||||||
ToolTip.text: {
|
ToolTip.text: {
|
||||||
|
@ -206,6 +206,8 @@ ApplicationWindow {
|
||||||
EncryptionIndicator {
|
EncryptionIndicator {
|
||||||
id: encryptInd
|
id: encryptInd
|
||||||
|
|
||||||
|
Layout.preferredWidth: 16
|
||||||
|
Layout.preferredHeight: 16
|
||||||
Layout.alignment: Qt.AlignRight
|
Layout.alignment: Qt.AlignRight
|
||||||
visible: room.isEncrypted
|
visible: room.isEncrypted
|
||||||
encrypted: room.isEncrypted
|
encrypted: room.isEncrypted
|
||||||
|
|
Loading…
Reference in a new issue