# HG changeset patch # User Jan D. # Date 1291545228 -3600 # Node ID 662b605247a417d2e6e526bdb24e008a4813e73c # Parent b803b31708094d933b88d71ac409ba12dd2f7d8a Fix for 7412 (no cursor on image) backported from trunk. * nsterm.m (ns_dumpglyphs_image): If drawing cursor, fill background with cursor color and draw a rectangle around the image. diff -r b803b3170809 -r 662b605247a4 src/ChangeLog --- a/src/ChangeLog Sun Dec 05 10:30:58 2010 +0900 +++ b/src/ChangeLog Sun Dec 05 11:33:48 2010 +0100 @@ -1,3 +1,8 @@ +2010-12-05 Jan Djärv + + * nsterm.m (ns_dumpglyphs_image): If drawing cursor, fill background + with cursor color and draw a rectangle around the image (Bug#7412). + 2010-12-05 Chong Yidong * xdisp.c (try_scrolling): Avoid infloop if the first line is diff -r b803b3170809 -r 662b605247a4 src/nsterm.m --- a/src/nsterm.m Sun Dec 05 10:30:58 2010 +0900 +++ b/src/nsterm.m Sun Dec 05 11:33:48 2010 +0100 @@ -2753,7 +2753,10 @@ else face = FACE_FROM_ID (s->f, s->first_glyph->face_id); - [ns_lookup_indexed_color (NS_FACE_BACKGROUND (face), s->f) set]; + if (s->hl == DRAW_CURSOR) + [FRAME_CURSOR_COLOR (s->f) set]; + else + [ns_lookup_indexed_color (NS_FACE_BACKGROUND (face), s->f) set]; if (bg_height > s->slice.height || s->img->hmargin || s->img->vmargin || s->img->mask || s->img->pixmap == 0 || s->width != s->background_width) @@ -2816,6 +2819,16 @@ s->slice.x == 0, s->slice.x + s->slice.width == s->img->width, s); } + + /* If there is no mask, the background won't be seen, + so draw a rectangle on the image for the cursor. + Do this for all images, getting trancparency right is not reliable. */ + if (s->hl == DRAW_CURSOR) + { + int thickness = abs (s->img->relief); + if (thickness == 0) thickness = 1; + ns_draw_box (br, thickness, FRAME_CURSOR_COLOR (s->f), 1, 1); + } }