Skip to content

Commit f36a07f

Browse files
committed
Fix issue with e.Handled
1 parent a9a96da commit f36a07f

1 file changed

Lines changed: 0 additions & 3 deletions

File tree

source/iNKORE.UI.WPF.Modern/Controls/ScrollViewerEx.cs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -190,9 +190,6 @@ protected override void OnMouseWheel(MouseWheelEventArgs e)
190190
{
191191
e.Handled = true;
192192
}
193-
{
194-
e.Handled = true;
195-
}
196193

197194
double WheelChange = RewriteWheelChange ? e.Delta * (ViewportWidth / 1.5) * WheelSensitivity / ActualWidth : e.Delta * WheelSensitivity;
198195
double newOffset = LastHorizontalLocation - WheelChange;

0 commit comments

Comments
 (0)