Commit c23972be by Daniel Dahan

removed redundant snapshot add subview call

parent 1c31140b
...@@ -166,7 +166,7 @@ public extension MotionContext { ...@@ -166,7 +166,7 @@ public extension MotionContext {
if let v = viewToSnapshot[view] { if let v = viewToSnapshot[view] {
return v return v
} }
var containerView = container var containerView = container
let coordinateSpace = viewToTargetState[view]?.coordinateSpace ?? defaultCoordinateSpace let coordinateSpace = viewToTargetState[view]?.coordinateSpace ?? defaultCoordinateSpace
...@@ -311,7 +311,6 @@ public extension MotionContext { ...@@ -311,7 +311,6 @@ public extension MotionContext {
let nextSiblings = siblingViews[siblingViews.index(of: pairedView)!+1..<siblingViews.count] let nextSiblings = siblingViews[siblingViews.index(of: pairedView)!+1..<siblingViews.count]
containerView.addSubview(pairedSnapshot) containerView.addSubview(pairedSnapshot)
containerView.addSubview(snapshot)
for subview in pairedView.subviews { for subview in pairedView.subviews {
insertGlobalViewTree(view: subview) insertGlobalViewTree(view: subview)
...@@ -320,9 +319,6 @@ public extension MotionContext { ...@@ -320,9 +319,6 @@ public extension MotionContext {
for sibling in nextSiblings { for sibling in nextSiblings {
insertGlobalViewTree(view: sibling) insertGlobalViewTree(view: sibling)
} }
} else {
containerView.addSubview(snapshot)
} }
containerView.addSubview(snapshot) containerView.addSubview(snapshot)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment