From e217fc6215f557a74ca69ac331e8f2ae41ce7b24 Mon Sep 17 00:00:00 2001 From: redstrate <54911369+redstrate@users.noreply.github.com> Date: Wed, 3 Jun 2020 23:20:15 -0400 Subject: [PATCH] Make reblog text gray --- MobileFort/MobileFort/PostView.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MobileFort/MobileFort/PostView.swift b/MobileFort/MobileFort/PostView.swift index 7732a6e..997d194 100644 --- a/MobileFort/MobileFort/PostView.swift +++ b/MobileFort/MobileFort/PostView.swift @@ -25,7 +25,7 @@ struct PostView: View { VStack(alignment: .leading) { if post.isReblogged() { - Text("Reblogged from " + post.originalUsername!) + Text(post.username + " reblogged from " + post.originalUsername!).foregroundColor(.gray) } if post.getTitle() != nil {