From 68bd9e0bed6704663ad1144f17f814a7f56feb56 Mon Sep 17 00:00:00 2001 From: Shadowfacts Date: Sat, 31 Aug 2024 11:20:09 -0400 Subject: [PATCH] Tweak mute button symbol animation --- Tusker/Screens/Gallery/VideoControlsViewController.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tusker/Screens/Gallery/VideoControlsViewController.swift b/Tusker/Screens/Gallery/VideoControlsViewController.swift index 7b2160d5..d2c582e6 100644 --- a/Tusker/Screens/Gallery/VideoControlsViewController.swift +++ b/Tusker/Screens/Gallery/VideoControlsViewController.swift @@ -408,7 +408,7 @@ private class MuteButton: UIControl { let image = UIImage(systemName: muted ? "speaker.slash.fill" : "speaker.wave.3.fill")! if animated, #available(iOS 17.0, *) { - imageView.setSymbolImage(image, contentTransition: .replace.wholeSymbol, options: .speed(5)) + imageView.setSymbolImage(image, contentTransition: .replace.byLayer) } else { imageView.image = image }