Fix push transition

This commit is contained in:
Peter 2019-10-11 16:12:49 +04:00
parent 6f4aa38ab8
commit ac6f0dc20e

View File

@ -70,7 +70,7 @@ class NavigationTransitionCoordinator {
switch transition {
case .Push:
self.container.insertSubnode(topNode, belowSubnode: topNode)
self.container.addSubnode(topNode)
case .Pop:
self.container.insertSubnode(bottomNode, belowSubnode: topNode)
}