manual fix

This commit is contained in:
stax76
2021-10-21 00:24:45 +02:00
parent f4e72b5a99
commit b115cf82d9
2 changed files with 3 additions and 4 deletions

View File

@@ -240,7 +240,7 @@ Height is always remembered.
**video**
Window size is set to video resolution.
**session**
**session**
Window size is remembered in the current session.
**always**

View File

@@ -90,9 +90,8 @@ namespace mpvnet
public static bool IsPosDifferent(Point screenPos)
{
return
Math.Abs(screenPos.X - Control.MousePosition.X) > 10 ||
Math.Abs(screenPos.Y - Control.MousePosition.Y) > 10;
return Math.Abs(screenPos.X - Control.MousePosition.X) > 10 ||
Math.Abs(screenPos.Y - Control.MousePosition.Y) > 10;
}
}