Skip to content

Commit

Permalink
[Tizen] Fix build error on net6
Browse files Browse the repository at this point in the history
  • Loading branch information
rookiejava committed Sep 24, 2021
1 parent 0489ae2 commit 9e1a9c4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Core/src/Platform/Tizen/MauiWebView.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ public MauiWebView(EvasObject parent) : base(parent)
Unfocused += OnUnfocused;
}

void OnFocused(object sender, EventArgs e)
void OnFocused(object? sender, EventArgs e)
{
WebView.SetFocus(true);
}

void OnUnfocused(object sender, EventArgs e)
void OnUnfocused(object? sender, EventArgs e)
{
WebView.SetFocus(false);
}
Expand Down

0 comments on commit 9e1a9c4

Please sign in to comment.