diff --git a/submodules/TelegramCallsUI/Sources/GroupVideoNode.swift b/submodules/TelegramCallsUI/Sources/GroupVideoNode.swift index fc48bd1ef5..6b9e877000 100644 --- a/submodules/TelegramCallsUI/Sources/GroupVideoNode.swift +++ b/submodules/TelegramCallsUI/Sources/GroupVideoNode.swift @@ -274,7 +274,7 @@ final class GroupVideoNode: ASDisplayNode { } if let backdropEffectView = self.backdropEffectView { - let maxSide = max(bounds.width, bounds.height) + let maxSide = max(bounds.width, bounds.height) + 32.0 let squareBounds = CGRect(x: (bounds.width - maxSide) / 2.0, y: (bounds.height - maxSide) / 2.0, width: maxSide, height: maxSide) if case let .animated(duration, .spring) = transition { diff --git a/submodules/TelegramCallsUI/Sources/VoiceChatMainStageNode.swift b/submodules/TelegramCallsUI/Sources/VoiceChatMainStageNode.swift index e16dedf8e6..c6c9febcf8 100644 --- a/submodules/TelegramCallsUI/Sources/VoiceChatMainStageNode.swift +++ b/submodules/TelegramCallsUI/Sources/VoiceChatMainStageNode.swift @@ -601,6 +601,12 @@ final class VoiceChatMainStageNode: ASDisplayNode { } let videoNode = GroupVideoNode(videoView: videoView, backdropVideoView: backdropVideoView) + videoNode.tapped = { [weak self] in + guard let strongSelf = self else { + return + } + strongSelf.tap() + } videoNode.sourceContainerNode.activate = { [weak self] sourceNode in guard let strongSelf = self else { return