Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/Files.App/Dialogs/ReleaseNotesDialog.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ private void ContentDialog_Closing(ContentDialog sender, ContentDialogClosingEve

private void CloseDialogButton_Click(object sender, RoutedEventArgs e)
{
BlogPostWebView.Close();
Hide();
}

Expand Down Expand Up @@ -97,7 +98,7 @@ private async void WebView_WebMessageReceived(WebView2 sender, CoreWebView2WebMe

// Navigate back to blog post
if (sender.CoreWebView2.CanGoBack)
sender.CoreWebView2.GoBack();
sender.CoreWebView2.GoBack();
}

}
Expand Down
Loading