fix: invalid message header size (#13372)

This commit is contained in:
Igor Sirotin 2024-01-31 20:22:27 +00:00 committed by GitHub
parent 7dcc704d29
commit c995ff20b0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 7 additions and 2 deletions

View File

@ -39,12 +39,13 @@ Item {
id: layout
spacing: 4
width: parent.width
StatusBaseText {
StatusBaseText {
id: primaryDisplayName
Layout.fillWidth: true
objectName: "StatusMessageHeader_DisplayName"
verticalAlignment: Text.AlignVCenter
Layout.fillWidth: true
Layout.maximumWidth: implicitWidth
Layout.bottomMargin: 2 // offset for the underline to stay vertically centered
font.weight: Font.Medium
font.underline: mouseArea.containsMouse
@ -192,5 +193,9 @@ Item {
text: "•"
}
}
Item {
Layout.fillWidth: true
}
}
}