Skip to content

Commit

Permalink
change navigation animation
Browse files Browse the repository at this point in the history
  • Loading branch information
Scighost committed Jul 12, 2024
1 parent 71c6bf1 commit 37ffb3e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Starward/Pages/MainPage.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -635,7 +635,7 @@ public void NavigateTo(Type? page, object? param = null, NavigationTransitionInf
MainPage_NavigationView.SelectedItem = NavigationViewItem_Launcher;
}
_logger.LogInformation("Navigate to {page} with param {param}", destPage, param ?? CurrentGameBiz);
MainPage_Frame.Navigate(page, param ?? CurrentGameBiz, new DrillInNavigationTransitionInfo());
MainPage_Frame.Navigate(page, param ?? CurrentGameBiz);
if (destPage is nameof(GameLauncherPage))
{
PlayVideo();
Expand Down

0 comments on commit 37ffb3e

Please sign in to comment.