aboutsummaryrefslogtreecommitdiff
path: root/Hotline/macOS/NewsView.swift
diff options
context:
space:
mode:
authorDustin Mierau <dustin@mierau.me>2023-12-20 12:37:29 -0800
committerDustin Mierau <dustin@mierau.me>2023-12-20 12:37:29 -0800
commit174e5554fc55f19b36b9fa3a3155d27ef918141d (patch)
treea4b4e009a284da8c8739d9a64638d5f3dafcd64f /Hotline/macOS/NewsView.swift
parentf58b0da88077b3129c2321b4af82b807c6d38ebf (diff)
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.
Diffstat (limited to 'Hotline/macOS/NewsView.swift')
-rw-r--r--Hotline/macOS/NewsView.swift8
1 files changed, 4 insertions, 4 deletions
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)
}
}