diff --git a/submodules/TelegramUI/Sources/ChatController.swift b/submodules/TelegramUI/Sources/ChatController.swift index d60e8e7cc7..1397ba2796 100644 --- a/submodules/TelegramUI/Sources/ChatController.swift +++ b/submodules/TelegramUI/Sources/ChatController.swift @@ -8913,6 +8913,11 @@ public final class ChatControllerImpl: TelegramBaseController, ChatController, G }.updatedInputMode({ _ in ChatInputMode.media(mode: .other, expanded: nil) }) }) } + }), + KeyShortcut(input: "F", modifiers: [.command], action: { [weak self] in + if let strongSelf = self { + strongSelf.beginMessageSearch("") + } }) ]