From 174e5554fc55f19b36b9fa3a3155d27ef918141d Mon Sep 17 00:00:00 2001 From: Dustin Mierau Date: Wed, 20 Dec 2023 12:37:29 -0800 Subject: Tracker window now allows for bookmarks and multiple trackers like the original Hotline client. You still can't add servers or trackers, but support is there. Also removed title from message reader view on macOS. --- Hotline/macOS/NewsView.swift | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'Hotline/macOS/NewsView.swift') diff --git a/Hotline/macOS/NewsView.swift b/Hotline/macOS/NewsView.swift index b5752d3..aa32d6a 100644 --- a/Hotline/macOS/NewsView.swift +++ b/Hotline/macOS/NewsView.swift @@ -181,9 +181,9 @@ struct NewsView: View { if let news = selection { if news.type == .article { - Text(news.name).font(.title) - .textSelection(.enabled) - .padding(.bottom, 8) +// Text(news.name).font(.title) +// .textSelection(.enabled) +// .padding(.bottom, 8) if let poster = news.articleUsername, let postDate = news.articleDate { HStack(alignment: .firstTextBaseline) { @@ -208,7 +208,7 @@ struct NewsView: View { if let newsText = self.articleText { Text(newsText) .textSelection(.enabled) - .lineSpacing(9) + .lineSpacing(4) .padding(.top, 16) } } -- cgit