From 8152642c6ca7732250185f3f35946a86d21aaa06 Mon Sep 17 00:00:00 2001 From: Garth Vander Houwen Date: Tue, 10 Jun 2025 23:31:51 -0700 Subject: [PATCH] Try and fix logo on ios 26 --- Meshtastic/Views/Helpers/MeshtasticLogo.swift | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Meshtastic/Views/Helpers/MeshtasticLogo.swift b/Meshtastic/Views/Helpers/MeshtasticLogo.swift index 84040d92..627ffdca 100644 --- a/Meshtastic/Views/Helpers/MeshtasticLogo.swift +++ b/Meshtastic/Views/Helpers/MeshtasticLogo.swift @@ -19,19 +19,20 @@ struct MeshtasticLogo: View { .renderingMode(.template) .foregroundColor(.accentColor) .scaledToFit() + .offset(x: -15) } .padding(.bottom, 5) .padding(.top, 5) - .offset(x: -15) + #else VStack { Image(colorScheme == .dark ? "logo-white" : "logo-black") .resizable() .renderingMode(.template) .scaledToFit() + .offset(x: -15) } .padding(.bottom, 5) - .offset(x: -15) #endif } }