Skip to content
This repository was archived by the owner on Aug 30, 2023. It is now read-only.
This repository was 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

@jverkoey

Description

@jverkoey
  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.

Metadata

Metadata

Assignees

No one assigned

    Labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions