Frame current entry on first navigation

This commit is contained in:
vakrilov
2015-04-08 16:16:25 +03:00
parent 937bf1efac
commit de5419d86f

View File

@ -231,7 +231,14 @@ class UINavigationControllerImpl extends UINavigationController implements UINav
var newEntry: definition.BackstackEntry = viewController[ENTRY];
var newPage = newEntry.resolvedPage;
if (!newPage.parent) {
if (!frame._currentEntry) {
// First navigation
frame._currentEntry = newEntry;
}
else {
frame._navigateToEntry = newEntry;
}
frame._addView(newPage);
frame.populateMenuItems(newPage);
}