From c934bc76534fe3c44375f00cc3c28f085042e825 Mon Sep 17 00:00:00 2001 From: alltheseas Date: Sun, 4 Jan 2026 18:28:06 -0600 Subject: [PATCH] longform: fix tab bar staying hidden when switching to non-longform event Restore chrome (nav bar + tab bar) when user taps to select a different event in thread view. Previously the tab bar could stay hidden because updateChromeVisibility short-circuits when isLongformEvent is false. Changelog-Fixed: Fixed tab bar staying hidden when switching from longform to non-longform event Signed-off-by: alltheseas --- damus/Features/Chat/ChatroomThreadView.swift | 2 ++ 1 file changed, 2 insertions(+) diff --git a/damus/Features/Chat/ChatroomThreadView.swift b/damus/Features/Chat/ChatroomThreadView.swift index d0197683..38ca7cd8 100644 --- a/damus/Features/Chat/ChatroomThreadView.swift +++ b/damus/Features/Chat/ChatroomThreadView.swift @@ -398,6 +398,8 @@ struct ChatroomThreadView: View { // Reset reading progress when switching to a different event initialTopY = nil readingProgress = 0 + // Restore chrome when switching events (user tapped to select) + showChrome() } .onDisappear() { thread.unsubscribe()