From 912d26c47cfa0257a00e1630af86407b9ccbf015 Mon Sep 17 00:00:00 2001 From: Angela Mazzurco Date: Mon, 12 Jun 2017 16:23:41 +0200 Subject: [PATCH] Change unread text max width --- retroshare-qml-app/src/GxsIdentityDelegate.qml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/retroshare-qml-app/src/GxsIdentityDelegate.qml b/retroshare-qml-app/src/GxsIdentityDelegate.qml index bff13f858..42bb656f6 100644 --- a/retroshare-qml-app/src/GxsIdentityDelegate.qml +++ b/retroshare-qml-app/src/GxsIdentityDelegate.qml @@ -131,12 +131,14 @@ Item height: parent.height /2 + Text { id: lastMessageSender font.italic: true color: "royalblue" text: (!lastMessageData.incoming && lastMessageData.msg)? "You: " : "" + height: parent.height } Text @@ -148,6 +150,7 @@ Item elide: Text.ElideRight color: "darkslategrey" width: chatInfoRow.width - 30 + height: parent.height } Rectangle