Set max width for text area

This commit is contained in:
Angela Mazzurco 2017-06-09 19:00:15 +02:00
parent 2809a9638a
commit ee0b347200
2 changed files with 37 additions and 7 deletions

View file

@ -34,6 +34,7 @@ QtObject {
property QtObject msgComposer: QtObject{
readonly property string placeHolder: "Send message..."
readonly property int maxHeight: 2 // chatListView/maxHeight
property QtObject background: Rectangle {
color: "transparent"
@ -56,9 +57,12 @@ QtObject {
}
}
property QtObject chat: QtObject {
// Measures
readonly property int bubbleMargin: 20
readonly property int bubbleSpacing: 10
}