diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 1 | ||||
| -rw-r--r-- | src/xterm.c | 4 |
2 files changed, 3 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index f25c07c55c3..da824826b0c 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -23,6 +23,7 @@ | |||
| 23 | width and height args. | 23 | width and height args. |
| 24 | (x_draw_stretch_glyph_string): Call x_reset_clip_rectangles instead | 24 | (x_draw_stretch_glyph_string): Call x_reset_clip_rectangles instead |
| 25 | of XSetClipMask. | 25 | of XSetClipMask. |
| 26 | (x_draw_relief_rect) [USE_CAIRO]: Reset clipping. | ||
| 26 | 27 | ||
| 27 | 2015-02-14 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> | 28 | 2015-02-14 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> |
| 28 | 29 | ||
diff --git a/src/xterm.c b/src/xterm.c index 94e83e902ff..8418dfaf431 100644 --- a/src/xterm.c +++ b/src/xterm.c | |||
| @@ -2547,8 +2547,8 @@ x_draw_relief_rect (struct frame *f, | |||
| 2547 | right_x + 1 - left_x, width, 0); | 2547 | right_x + 1 - left_x, width, 0); |
| 2548 | } | 2548 | } |
| 2549 | 2549 | ||
| 2550 | x_set_clip_rectangles (f, top_left_gc, clip_rect, 1); | 2550 | x_reset_clip_rectangles (f, top_left_gc); |
| 2551 | x_set_clip_rectangles (f, bottom_right_gc, clip_rect, 1); | 2551 | x_reset_clip_rectangles (f, bottom_right_gc); |
| 2552 | #else | 2552 | #else |
| 2553 | Display *dpy = FRAME_X_DISPLAY (f); | 2553 | Display *dpy = FRAME_X_DISPLAY (f); |
| 2554 | Window window = FRAME_X_WINDOW (f); | 2554 | Window window = FRAME_X_WINDOW (f); |