diff --git a/docs/Manual.md b/docs/Manual.md index 4d2591e..403f805 100644 --- a/docs/Manual.md +++ b/docs/Manual.md @@ -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** diff --git a/src/Misc/Help.cs b/src/Misc/Help.cs index 80b7fca..4a1d4a6 100644 --- a/src/Misc/Help.cs +++ b/src/Misc/Help.cs @@ -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; } }