Skip to content

Commit 6f01afc

Browse files
authored
fix: timeline freezes after horizontal scroll wheel seek (#912)
1 parent 8b44594 commit 6f01afc

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

Screenbox/Controls/PlayerElement.xaml.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#nullable enable
1+
#nullable enable
22

33
using CommunityToolkit.Mvvm.DependencyInjection;
44
using LibVLCSharp.Platforms.Windows;
@@ -125,6 +125,7 @@ private void VideoViewButton_OnPointerWheelChanged(object sender, PointerRoutedE
125125
var pointer = e.GetCurrentPoint(VideoViewButton);
126126
var properties = pointer.Properties;
127127
ViewModel.ProcessPointerWheelInput(properties.MouseWheelDelta, properties.IsHorizontalMouseWheel);
128+
ViewModel.OnManipulationCompleted();
128129
e.Handled = true;
129130
}
130131

0 commit comments

Comments
 (0)