mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-23 11:28:49 +03:00
Fix username label eliding loop
This commit is contained in:
parent
d2c616ee67
commit
b1c2b384c6
2 changed files with 11 additions and 5 deletions
|
@ -572,17 +572,23 @@ Item {
|
|||
rightInset: 0
|
||||
rightPadding: 0
|
||||
|
||||
contentItem: ElidedLabel {
|
||||
contentItem: Label {
|
||||
id: userName_
|
||||
|
||||
color: TimelineManager.userColor(userId, palette.base)
|
||||
elideWidth: Math.min(userInfo.remainingWidth - Math.min(statusMsg.implicitWidth, userInfo.remainingWidth / 3), userName_.fullTextWidth)
|
||||
fullText: userName
|
||||
text: TimelineManager.escapeEmoji(userNameTextMetrics.elidedText)
|
||||
textFormat: Text.RichText
|
||||
}
|
||||
|
||||
onClicked: room.openUserProfile(userId)
|
||||
|
||||
TextMetrics {
|
||||
id: userNameTextMetrics
|
||||
|
||||
elide: Text.ElideRight
|
||||
elideWidth: userInfo.remainingWidth - Math.min(statusMsg.implicitWidth, userInfo.remainingWidth / 3)
|
||||
text: userName
|
||||
}
|
||||
CursorShape {
|
||||
anchors.fill: parent
|
||||
cursorShape: Qt.PointingHandCursor
|
||||
|
|
|
@ -91,7 +91,7 @@ ApplicationWindow {
|
|||
Layout.fillWidth: true
|
||||
|
||||
ElidedLabel {
|
||||
text: model.displayName
|
||||
fullText: model.displayName
|
||||
color: TimelineManager.userColor(model ? model.mxid : "", palette.window)
|
||||
font.pointSize: fontMetrics.font.pointSize
|
||||
elideWidth: del.width - Nheko.paddingMedium - avatar.width
|
||||
|
@ -99,7 +99,7 @@ ApplicationWindow {
|
|||
}
|
||||
|
||||
ElidedLabel {
|
||||
text: model.timestamp
|
||||
fullText: model.timestamp
|
||||
color: palette.buttonText
|
||||
font.pointSize: fontMetrics.font.pointSize * 0.9
|
||||
elideWidth: del.width - Nheko.paddingMedium - avatar.width
|
||||
|
|
Loading…
Reference in a new issue