Add chat search key shortcut

This commit is contained in:
Ilya Laktyushin 2020-05-11 04:25:31 +04:00
parent 2268c28527
commit 46fd026a2c

View File

@ -8913,6 +8913,11 @@ public final class ChatControllerImpl: TelegramBaseController, ChatController, G
}.updatedInputMode({ _ in ChatInputMode.media(mode: .other, expanded: nil) }) }.updatedInputMode({ _ in ChatInputMode.media(mode: .other, expanded: nil) })
}) })
} }
}),
KeyShortcut(input: "F", modifiers: [.command], action: { [weak self] in
if let strongSelf = self {
strongSelf.beginMessageSearch("")
}
}) })
] ]