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

Commit

Permalink
Merge branch 'master'
Browse files Browse the repository at this point in the history
  • Loading branch information
Kinnara committed Oct 3, 2013
2 parents e29bff1 + bff6607 commit 64a76ca
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -721,7 +721,13 @@ private void ClosePopup(bool restoreOriginalValues, CustomMessageBoxResult sourc
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 64a76ca

Please sign in to comment.