fix(StatusChatInputButton) ensure button text is elided correctly

Closes #335
This commit is contained in:
Alexandra Betouni 2021-08-18 16:06:27 +03:00 committed by Pascal Precht
parent d16719adda
commit 38b0207055
No known key found for this signature in database
GPG Key ID: 0EE28D8D6FD85D7D
2 changed files with 8 additions and 5 deletions

View File

@ -37,6 +37,7 @@ Rectangle {
anchors.verticalCenter: parent.verticalCenter anchors.verticalCenter: parent.verticalCenter
anchors.left: parent.left anchors.left: parent.left
anchors.leftMargin: 12 anchors.leftMargin: 12
anchors.right: actionButtons.left
onClicked: statusChatToolBar.chatInfoButtonClicked() onClicked: statusChatToolBar.chatInfoButtonClicked()
} }
@ -45,7 +46,7 @@ Rectangle {
anchors.right: parent.right anchors.right: parent.right
anchors.rightMargin: 8 anchors.rightMargin: 8
anchors.verticalCenter: parent.verticalCenter anchors.verticalCenter: parent.verticalCenter
width: childrenRect.width
spacing: 8 spacing: 8
StatusFlatRoundButton { StatusFlatRoundButton {

View File

@ -102,8 +102,7 @@ Rectangle {
anchors.topMargin: statusChatInfoButtonSubTitle.visible ? 0 : 8 anchors.topMargin: statusChatInfoButtonSubTitle.visible ? 0 : 8
anchors.left: identicon.right anchors.left: identicon.right
anchors.leftMargin: 8 anchors.leftMargin: 8
anchors.right: parent.right
width: statusIcon.width + chatName.anchors.leftMargin + chatName.width + (mutedIcon.visible ? mutedIcon.width + mutedIcon.anchors.leftMargin : 0)
height: chatName.height height: chatName.height
StatusIcon { StatusIcon {
@ -138,7 +137,8 @@ Rectangle {
anchors.left: statusIcon.visible ? statusIcon.right : parent.left anchors.left: statusIcon.visible ? statusIcon.right : parent.left
anchors.leftMargin: statusIcon.visible ? 1 : 0 anchors.leftMargin: statusIcon.visible ? 1 : 0
anchors.top: parent.top anchors.top: parent.top
anchors.right: parent.right
elide: Text.ElideRight
text: statusChatInfoButton.type === StatusChatInfoButton.Type.PublicChat && text: statusChatInfoButton.type === StatusChatInfoButton.Type.PublicChat &&
!statusChatInfoButton.title.startsWith("#") ? !statusChatInfoButton.title.startsWith("#") ?
"#" + statusChatInfoButton.title : "#" + statusChatInfoButton.title :
@ -180,13 +180,15 @@ Rectangle {
Item { Item {
id: statusChatInfoButtonSubTitle id: statusChatInfoButtonSubTitle
anchors.left: statusChatInfoButtonTitle.left anchors.left: statusChatInfoButtonTitle.left
anchors.right: parent.right
anchors.top: statusChatInfoButtonTitle.bottom anchors.top: statusChatInfoButtonTitle.bottom
visible: !!statusChatInfoButton.subTitle || statusChatInfoButton.pinnedMessagesCount > 0 visible: !!statusChatInfoButton.subTitle || statusChatInfoButton.pinnedMessagesCount > 0
height: visible ? chatType.height : 0 height: visible ? chatType.height : 0
width: childrenRect.width
StatusBaseText { StatusBaseText {
id: chatType id: chatType
width: parent.width
elide: Text.ElideRight
text: statusChatInfoButton.subTitle text: statusChatInfoButton.subTitle
color: Theme.palette.baseColor1 color: Theme.palette.baseColor1
font.pixelSize: 12 font.pixelSize: 12