Removed unnecessary async call.

This commit is contained in:
Damian Büchel 2022-07-18 10:49:34 +02:00
parent 4e49821644
commit bd5f7d4293

View file

@ -657,7 +657,7 @@ if (typeof __SEB_focusElement === 'undefined') {
public void FocusAddressBar()
{
this.Dispatcher.BeginInvoke((Action) (async () =>
this.Dispatcher.BeginInvoke((Action) (() =>
{
this.UrlTextBox.Focus();
}));