From 7f66297c521fca8f9bc17280f0a96874598bde96 Mon Sep 17 00:00:00 2001 From: Koni Marti Date: Tue, 18 Jul 2023 10:29:52 +0200 Subject: threadbuilder: show siblings even when no parent found MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Show all threading associations even when not all nodes are present. Indicate if a thread is incomplete, i.e. misses a direct parent node. Use the `msglist_thread_orphan.fg=red` styleobject in your stylesheet to indicate whether a messsage has a missing parent. Also use a different thread prefix ("┬─" instead of "├─") not to confuse them with regular threads that have a visible parent. Signed-off-by: Koni Marti Signed-off-by: Robin Jarry Tested-by: Matěj Cepl --- models/templates.go | 1 + 1 file changed, 1 insertion(+) (limited to 'models') diff --git a/models/templates.go b/models/templates.go index c9b5d5b3..757e934a 100644 --- a/models/templates.go +++ b/models/templates.go @@ -25,6 +25,7 @@ type TemplateData interface { ThreadUnread() int ThreadFolded() bool ThreadContext() bool + ThreadOrphan() bool Subject() string SubjectBase() string Number() int -- cgit