From 18e6b366a5d8c8c37ec77294765716bece62519a Mon Sep 17 00:00:00 2001 From: dbuechel Date: Tue, 27 Aug 2019 11:53:29 +0200 Subject: [PATCH] SEBWIN-141: Removed custom windows style for good, as it does not fix the convoluted touch activation issue. --- SafeExamBrowser.Browser/BrowserControl.cs | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/SafeExamBrowser.Browser/BrowserControl.cs b/SafeExamBrowser.Browser/BrowserControl.cs index 4436c2ab..6902dd01 100644 --- a/SafeExamBrowser.Browser/BrowserControl.cs +++ b/SafeExamBrowser.Browser/BrowserControl.cs @@ -6,7 +6,6 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ -using System; using CefSharp; using CefSharp.WinForms; using SafeExamBrowser.Contracts.UserInterface.Browser; @@ -108,16 +107,5 @@ namespace SafeExamBrowser.Browser { GetBrowser().SetZoomLevel(level); } - - protected override IWindowInfo CreateBrowserWindowInfo(IntPtr handle) - { - const uint WS_EX_NOACTIVATE = 0x8000000; - var windowInfo = base.CreateBrowserWindowInfo(handle); - - // Ensures that input elements within the browser control actually receive input when activated via touch. - windowInfo.ExStyle &= ~WS_EX_NOACTIVATE; - - return windowInfo; - } } }