mirror of
https://github.com/Microsoft/calculator.git
synced 2025-07-31 12:00:01 -07:00
Clicking on the same element in the hamburger view should re-open that view, like the menu items do (#447)
Fixes #437. Clicking on the same element in the hamburger view should re-open that view, like the menu items do Description of the changes: -Fixed the bug that was listed How changes were validated: -manual
This commit is contained in:
parent
bd04c92c1c
commit
fab21191e2
3 changed files with 7 additions and 0 deletions
|
@ -524,3 +524,8 @@ void MainPage::AnnounceCategoryName()
|
|||
NarratorAnnouncement^ announcement = CalculatorAnnouncement::GetCategoryNameChangedAnnouncement(categoryName);
|
||||
NarratorNotifier->Announce(announcement);
|
||||
}
|
||||
|
||||
void MainPage::OnNavItemInvoked(MUXC::NavigationView^ /*sender*/, _In_ MUXC::NavigationViewItemInvokedEventArgs^ e)
|
||||
{
|
||||
NavView->IsPaneOpen = false;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue