Skip to content

Commit

Permalink
Fix nullability issue from CI
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-hawker committed Nov 10, 2022
1 parent 6ab4553 commit e81ebaa
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,8 @@ private void MarkdownTextBlock_Loaded(object sender, RoutedEventArgs e)
UpdateText(Text);
}

private void HtmlElementResized(object sender, EventArgs e)
#nullable enable
private void HtmlElementResized(object? sender, EventArgs e)
{
this.UpdateLayout();
}
Expand Down

0 comments on commit e81ebaa

Please sign in to comment.