From 5b334e7d688a141c4f371e3643bd07da20a99c69 Mon Sep 17 00:00:00 2001 From: Brent Simmons Date: Tue, 24 Dec 2024 18:26:44 -0800 Subject: [PATCH] =?UTF-8?q?Remove=20widget=20background=20color,=20since?= =?UTF-8?q?=20it=20didn=E2=80=99t=20extend=20to=20the=20edges=20=E2=80=94?= =?UTF-8?q?=20the=20widgets=20ended=20up=20with=20a=20border.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Widget/WidgetBundle.swift | 6 ------ 1 file changed, 6 deletions(-) diff --git a/Widget/WidgetBundle.swift b/Widget/WidgetBundle.swift index f5060ed7e..790b8c4a2 100644 --- a/Widget/WidgetBundle.swift +++ b/Widget/WidgetBundle.swift @@ -19,8 +19,6 @@ struct UnreadWidget: Widget { return StaticConfiguration(kind: kind, provider: Provider(), content: { entry in UnreadWidgetView(entry: entry) .frame(maxWidth: .infinity, maxHeight: .infinity) - .background(Color("WidgetBackground")) - }) .configurationDisplayName(L10n.unreadWidgetTitle) .description(L10n.unreadWidgetDescription) @@ -37,8 +35,6 @@ struct TodayWidget: Widget { return StaticConfiguration(kind: kind, provider: Provider(), content: { entry in TodayWidgetView(entry: entry) .frame(maxWidth: .infinity, maxHeight: .infinity) - .background(Color("WidgetBackground")) - }) .configurationDisplayName(L10n.todayWidgetTitle) .description(L10n.todayWidgetDescription) @@ -55,8 +51,6 @@ struct StarredWidget: Widget { return StaticConfiguration(kind: kind, provider: Provider(), content: { entry in StarredWidgetView(entry: entry) .frame(maxWidth: .infinity, maxHeight: .infinity) - .background(Color("WidgetBackground")) - }) .configurationDisplayName(L10n.starredWidgetTitle) .description(L10n.starredWidgetDescription)