Fix MemberDelegate v padding when collapsed

This commit is contained in:
miruka 2019-08-11 23:01:14 -04:00
parent 9924b0565a
commit fbd7c45fe4

View File

@ -6,16 +6,13 @@ import "../../utils.js" as Utils
HInteractiveRectangle { HInteractiveRectangle {
id: memberDelegate id: memberDelegate
width: memberList.width width: memberList.width
height: childrenRect.height height: rowLayout.height
Row {
width: parent.width - leftPadding * 2
padding: roomSidePane.currentSpacing / 2
leftPadding: roomSidePane.currentSpacing
rightPadding: 0
HRowLayout { HRowLayout {
width: parent.width id: rowLayout
x: roomSidePane.currentSpacing
width: parent.width - roomSidePane.currentSpacing * 1.5
height: avatar.height + roomSidePane.currentSpacing / 1.5
spacing: roomSidePane.currentSpacing spacing: roomSidePane.currentSpacing
HUserAvatar { HUserAvatar {
@ -38,5 +35,4 @@ HInteractiveRectangle {
} }
} }
} }
}
} }