diff --git a/SafeExamBrowser.Browser/BrowserControl.cs b/SafeExamBrowser.Browser/BrowserControl.cs index 359d4c66..a5445b99 100644 --- a/SafeExamBrowser.Browser/BrowserControl.cs +++ b/SafeExamBrowser.Browser/BrowserControl.cs @@ -6,6 +6,7 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ +using System; using CefSharp; using CefSharp.WinForms; using SafeExamBrowser.Contracts.UserInterface.Browser; @@ -15,6 +16,7 @@ namespace SafeExamBrowser.Browser { internal class BrowserControl : ChromiumWebBrowser, IBrowserControl { + private const uint WS_EX_NOACTIVATE = 0x08000000; private const double ZOOM_FACTOR = 0.1; private IContextMenuHandler contextMenuHandler; @@ -126,5 +128,18 @@ namespace SafeExamBrowser.Browser } }); } + + /// + /// TODO: This is a workaround due to the broken initial touch activation in version 73.1.130, it must be removed once fixed in CefSharp. + /// See https://github.com/cefsharp/CefSharp/issues/2776 for more information. + /// + protected override IWindowInfo CreateBrowserWindowInfo(IntPtr handle) + { + var windowInfo = base.CreateBrowserWindowInfo(handle); + + windowInfo.ExStyle &= ~WS_EX_NOACTIVATE; + + return windowInfo; + } } } diff --git a/SafeExamBrowser.Browser/SafeExamBrowser.Browser.csproj b/SafeExamBrowser.Browser/SafeExamBrowser.Browser.csproj index 580ece37..489f2bf5 100644 --- a/SafeExamBrowser.Browser/SafeExamBrowser.Browser.csproj +++ b/SafeExamBrowser.Browser/SafeExamBrowser.Browser.csproj @@ -1,9 +1,9 @@  - - - - + + + + Debug @@ -103,13 +103,13 @@ This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. - - - - - - + + + + + + - - + + \ No newline at end of file diff --git a/SafeExamBrowser.Browser/packages.config b/SafeExamBrowser.Browser/packages.config index e5b3b512..a991a14d 100644 --- a/SafeExamBrowser.Browser/packages.config +++ b/SafeExamBrowser.Browser/packages.config @@ -1,7 +1,7 @@  - - - - + + + + \ No newline at end of file diff --git a/SafeExamBrowser.UserInterface.Desktop/BrowserWindow.xaml b/SafeExamBrowser.UserInterface.Desktop/BrowserWindow.xaml index 00052241..e0d0e63a 100644 --- a/SafeExamBrowser.UserInterface.Desktop/BrowserWindow.xaml +++ b/SafeExamBrowser.UserInterface.Desktop/BrowserWindow.xaml @@ -34,7 +34,9 @@