From 1338bcd3f5c9e1f10da020081a41245a6071d5ba Mon Sep 17 00:00:00 2001 From: Flohack74 Date: Mon, 5 Mar 2018 21:07:51 +0100 Subject: [PATCH] Making message boxes a bit bigger, we can use the space more efficiently --- telegram/app/qml/components/MessagesListItem.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/telegram/app/qml/components/MessagesListItem.qml b/telegram/app/qml/components/MessagesListItem.qml index d0aef36f..3b0c38d3 100644 --- a/telegram/app/qml/components/MessagesListItem.qml +++ b/telegram/app/qml/components/MessagesListItem.qml @@ -26,7 +26,7 @@ ListItem { ? action_item.height : column.height + frameMargins*2 + textMargins*2 property real minimumHeight: contact_image.visible ? contact_image.height + units.gu(1) : 0 - property real maximumWidth: width * 0.75 - (contact_image.visible ? contact_image.width : 0) + property real maximumWidth: width * 0.85 - (contact_image.visible ? contact_image.width : 0) property real minimumWidth: 0 property real textMargins: units.dp(4)