diff --git a/submodules/ContextUI/Sources/ContextController.swift b/submodules/ContextUI/Sources/ContextController.swift index 4625c2dae1..8caa10449c 100644 --- a/submodules/ContextUI/Sources/ContextController.swift +++ b/submodules/ContextUI/Sources/ContextController.swift @@ -684,6 +684,8 @@ private final class ContextControllerNode: ViewControllerTracingNode, UIScrollVi if let result = contentParentNode.contentNode.hitTest(contentPoint, with: event) { if result is TextSelectionNodeView { return result + } else if contentParentNode.contentRect.contains(contentPoint) { + return contentParentNode.contentNode.view } } }