diff --git a/GrabTheMoment/ScreenMode/PrintScreenType.cs b/GrabTheMoment/ScreenMode/PrintScreenType.cs index 572a47f..2decd50 100644 --- a/GrabTheMoment/ScreenMode/PrintScreenType.cs +++ b/GrabTheMoment/ScreenMode/PrintScreenType.cs @@ -61,7 +61,7 @@ protected void SetXandY() foreach (Screen Kijelzo in Screen.AllScreens) { int iksz = Kijelzo.Bounds.X; - if (Kijelzo.Bounds.X < _X) + if (iksz < _X) _X = iksz; int ipszilon = Kijelzo.Bounds.Y; if (ipszilon < _Y) diff --git a/GrabTheMoment/ScreenMode/allmode.cs b/GrabTheMoment/ScreenMode/allmode.cs index 598db76..0483a54 100644 --- a/GrabTheMoment/ScreenMode/allmode.cs +++ b/GrabTheMoment/ScreenMode/allmode.cs @@ -12,7 +12,7 @@ public static void mekkoraazxesazy() foreach (Screen asztal in Screen.AllScreens) { int iksz = asztal.Bounds.X; - if (asztal.Bounds.X < x) + if (iksz < x) x = iksz; int ipszilon = asztal.Bounds.Y; if (ipszilon < y)