Skip to content

Commit

Permalink
fix(NavigationView): Made content visible when the NavigationView is …
Browse files Browse the repository at this point in the history
…open (#601)
  • Loading branch information
Marc-Antoine-Soucy committed Jun 9, 2023
1 parent ffe5e70 commit 5b56af5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ private void NavViewToggleButton_Click(object sender, RoutedEventArgs e)
else if (NavigationViewControl.PaneDisplayMode == MUXC.NavigationViewPaneDisplayMode.Left)
{
NavigationViewControl.IsPaneVisible = !NavigationViewControl.IsPaneVisible;
NavigationViewControl.IsPaneOpen = !NavigationViewControl.IsPaneVisible;
NavigationViewControl.IsPaneOpen = NavigationViewControl.IsPaneVisible;
}
}

Expand Down

0 comments on commit 5b56af5

Please sign in to comment.