Skip to content

Commit ff0725f

Browse files
committed
Fixed media controls not hiding
VideoPlayerPage.xaml.cs: - fix: A property was set to the wrong boolean when exiting the media controls. This has been changed to the correct boolean value.
1 parent 644c22e commit ff0725f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

OneDrive-Cloud-Player/Views/VideoPlayerPage.xaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ private void MediaControlGrid_PointerEntered(object sender, PointerRoutedEventAr
6464
/// </summary>
6565
private void MediaControlGrid_PointerExited(object sender, PointerRoutedEventArgs e)
6666
{
67-
isPointerOverMediaControl = true;
67+
isPointerOverMediaControl = false;
6868
}
6969

7070
/// <summary>

0 commit comments

Comments
 (0)