diff --git a/AssemblyInfo.cs b/AssemblyInfo.cs index d2d6b0a..c8c71bb 100644 --- a/AssemblyInfo.cs +++ b/AssemblyInfo.cs @@ -7,7 +7,7 @@ [assembly: System.Runtime.InteropServices.ComVisible(false)] [assembly: System.Runtime.InteropServices.Guid("4483e561-8b3e-427d-98a4-e0e821b7bf2f")] [assembly: System.Reflection.AssemblyConfiguration("")] -[assembly: System.Reflection.AssemblyFileVersion("2.5.5")] +[assembly: System.Reflection.AssemblyFileVersion("2.5.6")] [assembly: System.Runtime.CompilerServices.CompilationRelaxations(8)] [assembly: System.Runtime.CompilerServices.RuntimeCompatibility(WrapNonExceptionThrows = true)] diff --git a/SETUNA/Main/CaptureForm.cs b/SETUNA/Main/CaptureForm.cs index 67464f8..6e61efc 100644 --- a/SETUNA/Main/CaptureForm.cs +++ b/SETUNA/Main/CaptureForm.cs @@ -514,8 +514,6 @@ public void ShowCapture(SetunaOption.SetunaOptionData opt) { if (imgSnap != null) { - Cursor.Current = Cursors.Cross; - Cursor.Clip = this.targetScreen.Bounds; if ((this.screenNewSize.Width != imgSnap.Width) || (this.screenNewSize.Height != imgSnap.Height)) { imgSnap = new Bitmap(this.screenNewSize.Width, this.screenNewSize.Height, PixelFormat.Format24bppRgb); @@ -560,6 +558,10 @@ public void ShowCapture(SetunaOption.SetunaOptionData opt) selLineVer2.Show(this); } Console.WriteLine(string.Concat(new object[] { "14 - ", DateTime.Now.ToString(), " ", DateTime.Now.Millisecond })); + + Thread.Sleep(1); + Cursor.Current = Cursors.Cross; + Cursor.Clip = this.targetScreen.Bounds; } }