changeset 1286:6a5df80cfb43

Ug fix for editor adding tabs. Wish I could change the default in this thing.
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Mon, 31 Oct 2011 08:57:03 +0000
parents 2c04a56eaf63
children 57ce07fbec45
files os2/dw.c
diffstat 1 files changed, 7 insertions(+), 7 deletions(-) [+]
line wrap: on
line diff
--- 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 */