# HG changeset patch # User Gerd Moellmann # Date 1001582070 0 # Node ID 5f9f7d59fd799fb77bdd5c604be2fe13f4a64901 # Parent d625186dd9d14bf02914162f3839e1d2b2348c25 (x_draw_relief_rect): Draw bottom relief 1 pixel more to the left. Some cleanup. diff -r d625186dd9d1 -r 5f9f7d59fd79 src/xterm.c --- a/src/xterm.c Thu Sep 27 08:36:13 2001 +0000 +++ b/src/xterm.c Thu Sep 27 09:14:30 2001 +0000 @@ -3888,6 +3888,8 @@ int left_x, top_y, right_x, bottom_y, left_p, right_p, raised_p; XRectangle *clip_rect; { + Display *dpy = FRAME_X_DISPLAY (f); + Window window = FRAME_X_WINDOW (f); int i; GC gc; @@ -3895,40 +3897,40 @@ gc = f->output_data.x->white_relief.gc; else gc = f->output_data.x->black_relief.gc; - XSetClipRectangles (FRAME_X_DISPLAY (f), gc, 0, 0, clip_rect, 1, Unsorted); + XSetClipRectangles (dpy, gc, 0, 0, clip_rect, 1, Unsorted); /* Top. */ for (i = 0; i < width; ++i) - XDrawLine (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), gc, + XDrawLine (dpy, window, gc, left_x + i * left_p, top_y + i, right_x + 1 - i * right_p, top_y + i); /* Left. */ if (left_p) for (i = 0; i < width; ++i) - XDrawLine (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), gc, + XDrawLine (dpy, window, gc, left_x + i, top_y + i, left_x + i, bottom_y - i + 1); - XSetClipMask (FRAME_X_DISPLAY (f), gc, None); + XSetClipMask (dpy, gc, None); if (raised_p) gc = f->output_data.x->black_relief.gc; else gc = f->output_data.x->white_relief.gc; - XSetClipRectangles (FRAME_X_DISPLAY (f), gc, 0, 0, clip_rect, 1, Unsorted); + XSetClipRectangles (dpy, gc, 0, 0, clip_rect, 1, Unsorted); /* Bottom. */ for (i = 0; i < width; ++i) - XDrawLine (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), gc, - left_x + i * left_p + 1, bottom_y - i, - right_x + 1 - i * right_p, bottom_y - i); + XDrawLine (dpy, window, gc, + left_x + i * left_p, bottom_y - i, + right_x + 2 - i * right_p, bottom_y - i); /* Right. */ if (right_p) for (i = 0; i < width; ++i) - XDrawLine (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), gc, + XDrawLine (dpy, window, gc, right_x - i, top_y + i + 1, right_x - i, bottom_y - i); - XSetClipMask (FRAME_X_DISPLAY (f), gc, None); + XSetClipMask (dpy, gc, None); }