mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-12-23 22:55:00 +00:00
Always open keyboard when setting up a reply
This commit is contained in:
@@ -1536,7 +1536,14 @@ extension ChatControllerImpl {
|
||||
completion(t, {})
|
||||
})
|
||||
strongSelf.updateItemNodesSearchTextHighlightStates()
|
||||
strongSelf.chatDisplayNode.ensureInputViewFocused()
|
||||
if !strongSelf.chatDisplayNode.ensureInputViewFocused() {
|
||||
DispatchQueue.main.async { [weak self] in
|
||||
guard let self else {
|
||||
return
|
||||
}
|
||||
self.chatDisplayNode.ensureInputViewFocused()
|
||||
}
|
||||
}
|
||||
} else {
|
||||
completion(.immediate, {})
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user