WPF - Mouse Wheel becomes unresponsive after reload

DisableTouchpadAndWheelScrollLatching as workaround

Issue #2408
This commit is contained in:
amaitland 2018-06-25 19:18:03 +10:00
parent 64ec860e27
commit 29c9ef28df

View File

@ -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);
}