Skip to content

Commit

Permalink
fixed loading transition on complete handler
Browse files Browse the repository at this point in the history
  • Loading branch information
Jamie Healey committed Nov 1, 2018
1 parent 0905da8 commit c18214c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Transitions/LoadingTransition.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,9 @@ public void Start(IActivityTransitionController controller)
controller.SendMessage<ITransitionCompleteHandler>(h =>
{
h.HandleTransitionComplete();
controller.NotifyTransitionComplete();
});

controller.NotifyTransitionComplete();
});
});
}
Expand Down

0 comments on commit c18214c

Please sign in to comment.