Skip to content
This repository has been archived by the owner on Apr 10, 2020. It is now read-only.

Commit

Permalink
87100
Browse files Browse the repository at this point in the history
  • Loading branch information
Kinnara committed Oct 3, 2013
1 parent 2d414c8 commit bff6607
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -688,7 +688,13 @@ private void ClosePopup(bool restoreOriginalValues)
if (_hasApplicationBar)
{
_hasApplicationBar = false;
_page.ApplicationBar.IsVisible = true;

// Application bar can be nulled during the Dismissed event
// so a null check needs to be performed here.
if (_page.ApplicationBar != null)
{
_page.ApplicationBar.IsVisible = true;
}
}
}

Expand Down

0 comments on commit bff6607

Please sign in to comment.