From fca64f4bc8bbc00f8d95ccfdaad7dbd257a70df0 Mon Sep 17 00:00:00 2001 From: Adam Sharp Date: Wed, 30 Oct 2024 14:45:39 -0400 Subject: [PATCH] Use "heavy" haptic feedback style for unread filter --- .../HomeView/Chat List/ChatListFilterControl.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Signal/src/ViewControllers/HomeView/Chat List/ChatListFilterControl.swift b/Signal/src/ViewControllers/HomeView/Chat List/ChatListFilterControl.swift index 14ce648b7e..1dae471839 100644 --- a/Signal/src/ViewControllers/HomeView/Chat List/ChatListFilterControl.swift +++ b/Signal/src/ViewControllers/HomeView/Chat List/ChatListFilterControl.swift @@ -515,7 +515,7 @@ final class ChatListFilterControl: UIView, UIScrollViewDelegate { } if feedback == nil { - let feedback = UIImpactFeedbackGenerator(style: .medium) + let feedback = UIImpactFeedbackGenerator(style: .heavy) feedback.prepare() self.feedback = feedback }