From 29c9ef28dfc868ce1157d79260bea89fc4ec169d Mon Sep 17 00:00:00 2001 From: amaitland Date: Mon, 25 Jun 2018 19:18:03 +1000 Subject: [PATCH] WPF - Mouse Wheel becomes unresponsive after reload DisableTouchpadAndWheelScrollLatching as workaround Issue #2408 --- CefSharp.MinimalExample.Wpf/App.xaml.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CefSharp.MinimalExample.Wpf/App.xaml.cs b/CefSharp.MinimalExample.Wpf/App.xaml.cs index adaf068..5d83a97 100644 --- a/CefSharp.MinimalExample.Wpf/App.xaml.cs +++ b/CefSharp.MinimalExample.Wpf/App.xaml.cs @@ -14,6 +14,8 @@ namespace CefSharp.MinimalExample.Wpf CachePath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData), "CefSharp\\Cache") }; + settings.DisableTouchpadAndWheelScrollLatching(); + //Perform dependency check to make sure all relevant resources are in our output directory. Cef.Initialize(settings, performDependencyCheck: true, browserProcessHandler: null); }