From 1984ee89e0cb00180fddb97e5bb98ec93d98c195 Mon Sep 17 00:00:00 2001 From: Jonathan Rainville Date: Mon, 17 May 2021 14:32:12 -0400 Subject: [PATCH] fix(Channel): fix channel name eliding way too small --- ui/app/AppLayouts/Chat/ContactsColumn/Channel.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/app/AppLayouts/Chat/ContactsColumn/Channel.qml b/ui/app/AppLayouts/Chat/ContactsColumn/Channel.qml index 8c8e288a00..9949daffe4 100644 --- a/ui/app/AppLayouts/Chat/ContactsColumn/Channel.qml +++ b/ui/app/AppLayouts/Chat/ContactsColumn/Channel.qml @@ -101,7 +101,7 @@ Item { text: wrapper.realChatType !== Constants.chatTypePublic ? Emoji.parse(Utils.removeStatusEns(Utils.filterXSS(wrapper.name))) : "#" + Utils.filterXSS(wrapper.name) - anchors.right: contactTime.left + anchors.right: contactTime.visible ? contactTime.left : parent.right anchors.rightMargin: Style.current.smallPadding elide: Text.ElideRight color: muted ? Style.current.secondaryText : Style.current.textColor