diff options
| author | ross <ross@f5eea0f0-44ea-0310-b729-df5b855dafe5> | 2007-09-20 09:12:13 +0000 | 
|---|---|---|
| committer | ross <ross@f5eea0f0-44ea-0310-b729-df5b855dafe5> | 2007-09-20 09:12:13 +0000 | 
| commit | 3e562db835bd439a21e36e4add36b67899e3c09d (patch) | |
| tree | e02db287a6b362cd5d9be73c286701c89773773f | |
| parent | 9818701f6e4f440800744cf368806f7a943538e9 (diff) | |
2007-09-20  Ross Burton  <ross@openedhand.com>
	* xresponse.c:
	Fix order of coordinates when outputting the monitor rectangle
	(thanks Mika Yrjölä)
| -rw-r--r-- | ChangeLog | 6 | ||||
| -rw-r--r-- | xresponse.c | 4 | 
2 files changed, 8 insertions, 2 deletions
@@ -1,3 +1,9 @@ +2007-09-20  Ross Burton  <ross@openedhand.com> + +	* xresponse.c: +	Fix order of coordinates when outputting the monitor rectangle +	(thanks Mika Yrjölä) +  2007-01-02  Matthew Allum  <mallum@openedhand.com>  	* xresponse.doap: diff --git a/xresponse.c b/xresponse.c index 73e4a2f..c493249 100644 --- a/xresponse.c +++ b/xresponse.c @@ -417,8 +417,8 @@ main(int argc, char **argv)  	  if (verbose)  	      printf("Set monitor rect to %ix%i+%i+%i\n", -		     InterestedDamageRect.x,InterestedDamageRect.y, -		     InterestedDamageRect.width,InterestedDamageRect.height); +		     InterestedDamageRect.width,InterestedDamageRect.height, +		     InterestedDamageRect.x,InterestedDamageRect.y);  	  continue;  	}  | 
