From bd5f7d4293e5f9171f8ce8b9ba90b64750d765b5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Damian=20B=C3=BCchel?= Date: Mon, 18 Jul 2022 10:49:34 +0200 Subject: [PATCH] Removed unnecessary async call. --- .../Windows/BrowserWindow.xaml.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SafeExamBrowser.UserInterface.Mobile/Windows/BrowserWindow.xaml.cs b/SafeExamBrowser.UserInterface.Mobile/Windows/BrowserWindow.xaml.cs index 2c038b57..e35aa756 100644 --- a/SafeExamBrowser.UserInterface.Mobile/Windows/BrowserWindow.xaml.cs +++ b/SafeExamBrowser.UserInterface.Mobile/Windows/BrowserWindow.xaml.cs @@ -657,7 +657,7 @@ if (typeof __SEB_focusElement === 'undefined') { public void FocusAddressBar() { - this.Dispatcher.BeginInvoke((Action) (async () => + this.Dispatcher.BeginInvoke((Action) (() => { this.UrlTextBox.Focus(); }));