From c41f20f71d348eafaa6edd89de460629d9398fc3 Mon Sep 17 00:00:00 2001 From: Kylmakalle Date: Wed, 8 Jan 2025 01:00:07 +0200 Subject: [PATCH] Try to animate taps --- submodules/TelegramUI/Sources/ChatTextInputPanelNode.swift | 2 ++ 1 file changed, 2 insertions(+) diff --git a/submodules/TelegramUI/Sources/ChatTextInputPanelNode.swift b/submodules/TelegramUI/Sources/ChatTextInputPanelNode.swift index 87a763bc1f..84a8bad9ff 100644 --- a/submodules/TelegramUI/Sources/ChatTextInputPanelNode.swift +++ b/submodules/TelegramUI/Sources/ChatTextInputPanelNode.swift @@ -5379,5 +5379,7 @@ struct ToolbarButtonStyle: ButtonStyle { .frame(width: 36, height: 36, alignment: .center) .background(Color(UIColor.tertiarySystemBackground)) .cornerRadius(8) + // TODO(swiftgram): Does not work for fast taps (like mine) + .opacity(configuration.isPressed ? 0.4 : 1.0) } }