From 16b6d029fa6de269cae26acd211ee0edee07a5f1 Mon Sep 17 00:00:00 2001 From: Zach Hendel <56426913+olheadinternet@users.noreply.github.com> Date: Sun, 15 Jan 2023 17:22:10 -0800 Subject: [PATCH] Icons for hardclick menu event view changes copy user id icon to person changes copy note id icon to note.text changes copy note json icon to magnifying glass Closes: #330 --- damus/Views/EventView.swift | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/damus/Views/EventView.swift b/damus/Views/EventView.swift index 24965147..f530c552 100644 --- a/damus/Views/EventView.swift +++ b/damus/Views/EventView.swift @@ -324,19 +324,19 @@ extension View { Button { UIPasteboard.general.string = bech32_pubkey(pubkey) ?? pubkey } label: { - Label(NSLocalizedString("Copy User ID", comment: "Context menu option for copying the ID of the user who created the note."), systemImage: "tag") + Label(NSLocalizedString("Copy User ID", comment: "Context menu option for copying the ID of the user who created the note."), systemImage: "person") } Button { UIPasteboard.general.string = bech32_note_id(event.id) ?? event.id } label: { - Label(NSLocalizedString("Copy Note ID", comment: "Context menu option for copying the ID of the note."), systemImage: "tag") + Label(NSLocalizedString("Copy Note ID", comment: "Context menu option for copying the ID of the note."), systemImage: "note.text") } Button { UIPasteboard.general.string = event_to_json(ev: event) } label: { - Label(NSLocalizedString("Copy Note JSON", comment: "Context menu option for copying the JSON text from the note."), systemImage: "note") + Label(NSLocalizedString("Copy Note JSON", comment: "Context menu option for copying the JSON text from the note."), systemImage: "j.square.on.square") } Button {