From b8e67a5ffc2c7ee68616aeee0cc565d07e2fc97c Mon Sep 17 00:00:00 2001 From: Laurent Date: Mon, 22 May 2023 10:14:36 +0200 Subject: [PATCH] Fixes --- LaunchWidget/SingleTimerView.swift | 1 + LeCountdown/Conductor.swift | 1 + 2 files changed, 2 insertions(+) diff --git a/LaunchWidget/SingleTimerView.swift b/LaunchWidget/SingleTimerView.swift index 3f417e1..cd8ab8b 100644 --- a/LaunchWidget/SingleTimerView.swift +++ b/LaunchWidget/SingleTimerView.swift @@ -191,6 +191,7 @@ struct MultiCountdownView: View { } .padding(.horizontal, 12.0) .padding(.vertical, 16.0) + .frame(maxWidth: .infinity, maxHeight: .infinity) .background(GradientView()) } diff --git a/LeCountdown/Conductor.swift b/LeCountdown/Conductor.swift index 4b2cd63..fca41f3 100644 --- a/LeCountdown/Conductor.swift +++ b/LeCountdown/Conductor.swift @@ -300,6 +300,7 @@ class Conductor: ObservableObject { } #endif self.currentCountdowns.removeValue(forKey: countdownId) + self._endLiveActivity(timerId: countdownId) } }