From 5f4bde96e9a6f82033b588f7468146dcffb71239 Mon Sep 17 00:00:00 2001 From: James Graham Date: Tue, 28 Jan 2025 18:13:56 +0000 Subject: [PATCH] Max Width Threads Since threads are a conversation where both the local user and others take part always make them span the full available width --- src/timeline/MessageDelegate.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/timeline/MessageDelegate.qml b/src/timeline/MessageDelegate.qml index 1d5d1a320..3b2190d35 100644 --- a/src/timeline/MessageDelegate.qml +++ b/src/timeline/MessageDelegate.qml @@ -289,7 +289,7 @@ TimelineDelegate { AnchorChanges { target: bubble anchors.left: avatar.right - anchors.right: undefined + anchors.right: root.isThreaded ? parent.right : undefined } } ]