mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-24 12:08:50 +03:00
Fix powerlevel indicator size in the timeline
This commit is contained in:
parent
2401c211ab
commit
79a47ff9c2
2 changed files with 4 additions and 4 deletions
|
@ -570,9 +570,11 @@ Item {
|
|||
|
||||
PowerlevelIndicator {
|
||||
id: powerlevelIndicator
|
||||
anchors.left: parent.left
|
||||
//anchors.horizontalCenter: parent.horizontalCenter
|
||||
|
||||
anchors.left: parent.left
|
||||
anchors.verticalCenter: parent.verticalCenter
|
||||
height: fontMetrics.ascent
|
||||
width: height
|
||||
powerlevel: userPowerlevel
|
||||
permissions: room ? room.permissions : null
|
||||
visible: isAdmin || isModerator
|
||||
|
|
|
@ -23,8 +23,6 @@ Image {
|
|||
return "image://colorimage/:/icons/icons/ui/person.svg?";
|
||||
}
|
||||
|
||||
sourceSize.width: 16
|
||||
sourceSize.height: 16
|
||||
source: sourceUrl + (ma.hovered ? palette.highlight : palette.buttonText)
|
||||
ToolTip.visible: ma.hovered
|
||||
ToolTip.text: {
|
||||
|
|
Loading…
Reference in a new issue