﻿id	summary	reporter	owner	description	type	status	milestone	component	version	severity	resolution	keywords	cc
1614	_ScreenCapture_CaptureWnd(): Ignoring that Right and Bottom are Bounding coordinates.	anonymous	Jpm	"Effect: Allows capture range to be one pixel to big on right and bottom sides.
Suggestion fix. (File: ScreenCapture.au3)
First part is for auto capture case.
Second part is for none auto capture case. (specific coordinate input on right/bottom parm.)
{{{
128,129c128,129
< 	If $iRight = -1 Then $iRight = DllStructGetData($tRect, ""Right"") - DllStructGetData($tRect, ""Left"")
< 	If $iBottom = -1 Then $iBottom = DllStructGetData($tRect, ""Bottom"") - DllStructGetData($tRect, ""Top"")
---
> 	If $iRight = -1 Then $iRight = DllStructGetData($tRect, ""Right"") - DllStructGetData($tRect, ""Left"") - 1
> 	If $iBottom = -1 Then $iBottom = DllStructGetData($tRect, ""Bottom"") - DllStructGetData($tRect, ""Top"") - 1
134,135c134,135
< 	If $iRight > DllStructGetData($tRect, ""Right"") Then $iRight = DllStructGetData($tRect, ""Right"")
< 	If $iBottom > DllStructGetData($tRect, ""Bottom"") Then $iBottom = DllStructGetData($tRect, ""Bottom"")
---
> 	If $iRight >= DllStructGetData($tRect, ""Right"") Then $iRight = DllStructGetData($tRect, ""Right"") -1
> 	If $iBottom >= DllStructGetData($tRect, ""Bottom"") Then $iBottom = DllStructGetData($tRect, ""Bottom"") -1
}}}"	Bug	closed	3.3.7.0	AutoIt	3.3.6.1	None	Fixed	_ScreenCapture_CaptureWnd	
