# HG changeset patch # User bsmith@81767d24-ef19-dc11-ae90-00e081727c95 # Date 1333761735 0 # Node ID 8493f88888936b4f7ef3f4d843d89668bfcb7e70 # Parent 69386c5a8e3efff978e177cb15a02d511b9211ab Fixed off by one in the y field of the expose event on OS/2. diff -r 69386c5a8e3e -r 8493f8888893 os2/dw.c --- a/os2/dw.c Fri Apr 06 23:34:00 2012 +0000 +++ b/os2/dw.c Sat Apr 07 01:22:15 2012 +0000 @@ -2847,7 +2847,7 @@ hps = WinBeginPaint(hWnd, 0L, &rc); exp.x = rc.xLeft; - exp.y = height - rc.yTop - 1; + exp.y = height - rc.yTop; exp.width = rc.xRight - rc. xLeft; exp.height = rc.yTop - rc.yBottom; result = exposefunc(hWnd, &exp, tmp->data);