]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix display of BW images on MS-Windows
authorKazuhiro Ito <kzhr@d1.dion.ne.jp>
Thu, 26 Aug 2010 07:35:54 +0000 (07:35 +0000)
committerEli Zaretskii <eliz@gnu.org>
Sat, 6 Nov 2021 11:33:46 +0000 (13:33 +0200)
* src/image.c (convert_mono_to_color_image) [HAVE_NTGUI]: Swap the
fore- and the back-ground colors back to their normal conventions.
(Bug#6918)

src/image.c

index da6cbba74dae2439d87a81f48023f3dd1e24166c..6769e491202b01d23a79cadc12c14794cdeb33f7 100644 (file)
@@ -3547,10 +3547,8 @@ convert_mono_to_color_image (struct frame *f, struct image *img,
   release_frame_dc (f, hdc);
   old_prev = SelectObject (old_img_dc, img->pixmap);
   new_prev = SelectObject (new_img_dc, new_pixmap);
-  /* Windows convention for mono bitmaps is black = background,
-     white = foreground.  */
-  SetTextColor (new_img_dc, background);
-  SetBkColor (new_img_dc, foreground);
+  SetTextColor (new_img_dc, foreground);
+  SetBkColor (new_img_dc, background);
 
   BitBlt (new_img_dc, 0, 0, img->width, img->height, old_img_dc,
          0, 0, SRCCOPY);