From b115cf82d9e4a97be69e6ac2b19431a73644e25e Mon Sep 17 00:00:00 2001 From: stax76 Date: Thu, 21 Oct 2021 00:24:45 +0200 Subject: [PATCH] manual fix --- docs/Manual.md | 2 +- src/Misc/Help.cs | 5 ++--- 2 files changed, 3 insertions(+), 4 deletions(-) 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; } }