From 8ba7a5fa6ef7274339c3c709a2babb790e11e32b Mon Sep 17 00:00:00 2001 From: Dustin Mierau Date: Fri, 10 May 2024 16:52:28 -0700 Subject: Further work on threaded news UI: better icons, tweaked indentation, post count, keyboard navigation. --- Hotline/Models/Hotline.swift | 1 + 1 file changed, 1 insertion(+) (limited to 'Hotline/Models/Hotline.swift') diff --git a/Hotline/Models/Hotline.swift b/Hotline/Models/Hotline.swift index 48266a9..5dc61ab 100644 --- a/Hotline/Models/Hotline.swift +++ b/Hotline/Models/Hotline.swift @@ -387,6 +387,7 @@ class Hotline: Equatable, HotlineClientDelegate, HotlineFileClientDelegate { if let parentID = article.parentID, parentID != 0, let parentArticle = articleMap[parentID] { + article.expanded = true parentArticle.children.append(article) } else { -- cgit