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** **video**
Window size is set to video resolution. Window size is set to video resolution.
**session** **session**
Window size is remembered in the current session. Window size is remembered in the current session.
**always** **always**

View File

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