From 69230593e99759b36bb856342384b2f307e51548 Mon Sep 17 00:00:00 2001 From: nielsandriesse Date: Thu, 10 Sep 2020 11:17:48 +1000 Subject: [PATCH] Minor UI tweaks --- Signal/src/Loki/Components/NewConversationButtonSet.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Signal/src/Loki/Components/NewConversationButtonSet.swift b/Signal/src/Loki/Components/NewConversationButtonSet.swift index 7a1e583c9..98e9bb9a6 100644 --- a/Signal/src/Loki/Components/NewConversationButtonSet.swift +++ b/Signal/src/Loki/Components/NewConversationButtonSet.swift @@ -104,7 +104,7 @@ final class NewConversationButtonSet : UIView { override func touchesBegan(_ touches: Set, with event: UIEvent?) { guard let touch = touches.first, mainButton.contains(touch), !isUserDragging else { return } - UIImpactFeedbackGenerator(style: .medium).impactOccurred() + UIImpactFeedbackGenerator(style: .heavy).impactOccurred() expand(isUserDragging: true) }