# HG changeset patch # User bsmith@81767d24-ef19-dc11-ae90-00e081727c95 # Date 1320051423 0 # Node ID 6a5df80cfb4301d90b93762d60d5374af2a7884f # Parent 2c04a56eaf636647d743451b93d34ad77c5db55e Ug fix for editor adding tabs. Wish I could change the default in this thing. diff -r 2c04a56eaf63 -r 6a5df80cfb43 os2/dw.c --- a/os2/dw.c Mon Oct 31 08:49:57 2011 +0000 +++ b/os2/dw.c Mon Oct 31 08:57:03 2011 +0000 @@ -8708,18 +8708,18 @@ if(flags & DW_DRAW_FULL) { pts[0].x = xorigin; - pts[0].y = thisheight - yorigin - 1; + pts[0].y = thisheight - yorigin - 1; GpiMove(hps, pts); - ap.lP = (x2 - x1)/2; - ap.lQ = (y2 - y1)/2; - /* Setup the arc info on the presentation space */ - GpiSetArcParams(hps, &ap); + ap.lP = (x2 - x1)/2; + ap.lQ = (y2 - y1)/2; + /* Setup the arc info on the presentation space */ + GpiSetArcParams(hps, &ap); GpiFullArc(hps, DRO_OUTLINE, MAKEFIXED(1, 1)); } else { - /* Setup the default arc info on the presentation space */ - GpiSetArcParams(hps, &ap); + /* Setup the default arc info on the presentation space */ + GpiSetArcParams(hps, &ap); pts[0].x = x1; pts[0].y = thisheight - y1 - 1; /* Move to the initial position */