From 0d5f36d9cb2b1062422fbbdc584b47332bfdadd1 Mon Sep 17 00:00:00 2001 From: Garth Vander Houwen Date: Mon, 4 Sep 2023 07:29:35 -0700 Subject: [PATCH] Flip favorite star icons --- Meshtastic/Views/Messages/UserList.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Meshtastic/Views/Messages/UserList.swift b/Meshtastic/Views/Messages/UserList.swift index d9fa02f4..bad3418b 100644 --- a/Meshtastic/Views/Messages/UserList.swift +++ b/Meshtastic/Views/Messages/UserList.swift @@ -111,7 +111,7 @@ struct UserList: View { print("💥 Save User VIP Error") } } label: { - Label(user.vip ? "Un-Favorite" : "Favorite", systemImage: user.vip ? "star.fill" : "star.slash.fill") + Label(user.vip ? "Un-Favorite" : "Favorite", systemImage: user.vip ? "star.slash.fill" : "star.fill") } Button { user.mute = !user.mute