From ea3de4cddacf10687a5659739ab87a2623d400b6 Mon Sep 17 00:00:00 2001 From: Shadowfacts Date: Mon, 21 Sep 2020 18:18:55 -0400 Subject: [PATCH] Fix wrong icon in context menu action --- Tusker/Screens/Utilities/Previewing.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tusker/Screens/Utilities/Previewing.swift b/Tusker/Screens/Utilities/Previewing.swift index a9ddb078..14eb7f8d 100644 --- a/Tusker/Screens/Utilities/Previewing.swift +++ b/Tusker/Screens/Utilities/Previewing.swift @@ -69,7 +69,7 @@ extension MenuPreviewProvider { let following = relationship.following DispatchQueue.main.async { elementHandler([ - self.createAction(identifier: "follow", title: following ? "Unfollow" : "Follow", systemImageName: following ? "person.badge.minus" : "person.badge.minus", handler: { (_) in + self.createAction(identifier: "follow", title: following ? "Unfollow" : "Follow", systemImageName: following ? "person.badge.minus" : "person.badge.plus", handler: { (_) in let request = (following ? Account.unfollow : Account.follow)(accountID) mastodonController.run(request) { (_) in }