mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-23 06:38:07 +00:00
Fix multi-line error messages on text fields
This commit is contained in:
parent
e40728b32f
commit
55fa291e74
2 changed files with 5 additions and 3 deletions
|
|
@ -90,7 +90,7 @@ Controls.TextField {
|
|||
onClicked: textField.iconClicked()
|
||||
}
|
||||
}
|
||||
bottomPadding: (statusItem.visible?statusItem.height:2)
|
||||
bottomPadding: (statusItem.visible?statusItem.implicitHeight:2)
|
||||
TextEdit{
|
||||
id:statusItem
|
||||
selectByMouse: true
|
||||
|
|
@ -103,6 +103,7 @@ Controls.TextField {
|
|||
anchors.rightMargin:10 + toolsContainer.width
|
||||
horizontalAlignment:Text.AlignRight
|
||||
verticalAlignment: Text.AlignVCenter
|
||||
wrapMode: TextEdit.WordWrap
|
||||
font {
|
||||
italic: true
|
||||
pointSize: textFieldStyle.text.pointSize
|
||||
|
|
|
|||
|
|
@ -26,7 +26,8 @@ DialogPlus {
|
|||
chatRoomModel.leaveChatRoom();
|
||||
exit(0)
|
||||
}
|
||||
enabled:!chatRoomModel.hasBeenLeft
|
||||
enabled: !chatRoomModel.hasBeenLeft
|
||||
visible: !chatRoomModel.isOneToOne
|
||||
},Item{
|
||||
Layout.fillWidth: true
|
||||
},
|
||||
|
|
@ -46,7 +47,7 @@ DialogPlus {
|
|||
showCloseCross: true
|
||||
//: "Group information" : Popup title.
|
||||
//~ This popup display data about the current chat room
|
||||
title: "Group information"
|
||||
title: qsTr("chatRoomDetailsTitle")
|
||||
|
||||
property ChatRoomModel chatRoomModel
|
||||
buttonsAlignment: Qt.AlignBottom
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue