We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c721b28 + f36a07f commit 69ccdcdCopy full SHA for 69ccdcd
source/iNKORE.UI.WPF.Modern/Controls/ScrollViewerEx.cs
@@ -215,9 +215,6 @@ protected override void OnMouseWheel(MouseWheelEventArgs e)
215
{
216
e.Handled = true;
217
}
218
- {
219
- e.Handled = true;
220
- }
221
222
double WheelChange = RewriteWheelChange ? e.Delta * (ViewportWidth / 1.5) * WheelSensitivity / ActualWidth : e.Delta * WheelSensitivity;
223
double newOffset = LastHorizontalLocation - WheelChange;
0 commit comments