Mercurial > emacs
changeset 25092:79a5a567bdb0
(prepare_face_for_display): Use FillOpaqueStippled instead of
FillStippled.
author | Gerd Moellmann <gerd@gnu.org> |
---|---|
date | Tue, 27 Jul 1999 23:55:58 +0000 |
parents | c3dc74005d22 |
children | 30bfdf581d6f |
files | src/xfaces.c |
diffstat | 1 files changed, 3 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/src/xfaces.c Tue Jul 27 23:55:28 1999 +0000 +++ b/src/xfaces.c Tue Jul 27 23:55:58 1999 +0000 @@ -1265,9 +1265,8 @@ face->stipple = load_pixmap (f, Vface_default_stipple, &face->pixmap_w, &face->pixmap_h); } - else - face->background = load_color (f, face, bg, LFACE_BACKGROUND_INDEX); - + + face->background = load_color (f, face, bg, LFACE_BACKGROUND_INDEX); face->foreground = load_color (f, face, fg, LFACE_FOREGROUND_INDEX); } @@ -3928,7 +3927,7 @@ BLOCK_INPUT; if (face->stipple) { - xgcv.fill_style = FillStippled; + xgcv.fill_style = FillOpaqueStippled; xgcv.stipple = x_bitmap_pixmap (f, face->stipple); mask |= GCFillStyle | GCStipple; }