Skip to content
This repository has been archived by the owner on Aug 30, 2023. It is now read-only.

attemptFallback should be invoked on each node rather than on each child #54

Open
jverkoey opened this issue Oct 26, 2017 · 0 comments
Open
Labels

Comments

@jverkoey
Copy link
Contributor

jverkoey commented Oct 26, 2017

  for (MDMViewControllerTransitionContextNode *child in _children) {
    [child attemptFallback];

    [child start];
  }

should be

  [self attemptFallback];

  for (MDMViewControllerTransitionContextNode *child in _children) {
    [child start];
  }

otherwise composed transitions will not attempt to fallback.

@jverkoey jverkoey added the Bug label Oct 26, 2017
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
Projects
None yet
Development

No branches or pull requests

1 participant