Voice Chats Fixes

This commit is contained in:
Ilya Laktyushin
2021-03-15 23:32:54 +04:00
parent 16ab35c357
commit 1be29aacda
5 changed files with 15 additions and 3 deletions

View File

@@ -1508,6 +1508,8 @@ open class NavigationController: UINavigationController, ContainableController,
self.displayNode.insertSubnode(inCallStatusBar, belowSubnode: bottomOverlayContainer)
} else if let globalScrollToTopNode = self.globalScrollToTopNode {
self.displayNode.insertSubnode(inCallStatusBar, belowSubnode: globalScrollToTopNode)
} else if let globalOverlayContainerParent = self.globalOverlayContainerParent {
self.displayNode.insertSubnode(inCallStatusBar, belowSubnode: globalOverlayContainerParent)
} else {
self.displayNode.addSubnode(inCallStatusBar)
}