From ef693c1670f52221120afa99cb5bc8f68b10ccfe Mon Sep 17 00:00:00 2001 From: Balazs Perlaki-Horvath Date: Fri, 28 Feb 2025 11:31:27 +0100 Subject: [PATCH] Change logo proportions for live activities --- Widgets/KiwixLogo.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Widgets/KiwixLogo.swift b/Widgets/KiwixLogo.swift index d2af4ccb..b4be4174 100644 --- a/Widgets/KiwixLogo.swift +++ b/Widgets/KiwixLogo.swift @@ -31,7 +31,7 @@ struct KiwixLogo: View { Image("KiwixLogo") .resizable() .scaledToFit() - .frame(width: maxHeight / 1.6182, height: maxHeight / 1.6182) + .frame(width: maxHeight * 0.75, height: maxHeight * 0.75) } } }