diff options
author | patthoyts <patthoyts@users.sourceforge.net> | 2007-10-24 01:03:37 (GMT) |
---|---|---|
committer | patthoyts <patthoyts@users.sourceforge.net> | 2007-10-24 01:03:37 (GMT) |
commit | 5d96c35c08ea64525de7b4ab99171bfcc0252142 (patch) | |
tree | 9566ae8d9b743d980d258cd559a44562b04b2e4c /win | |
parent | 373d9b2be8983294414323edd2b51b689ab821d8 (diff) | |
download | tk-5d96c35c08ea64525de7b4ab99171bfcc0252142.zip tk-5d96c35c08ea64525de7b4ab99171bfcc0252142.tar.gz tk-5d96c35c08ea64525de7b4ab99171bfcc0252142.tar.bz2 |
Applied patch from #1723362 for transparent bitmaps
Diffstat (limited to 'win')
-rw-r--r-- | win/tkWinDraw.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/win/tkWinDraw.c b/win/tkWinDraw.c index 8c736ab..d1be3e1 100644 --- a/win/tkWinDraw.c +++ b/win/tkWinDraw.c @@ -10,7 +10,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkWinDraw.c,v 1.18 2007/01/11 15:35:40 dkf Exp $ + * RCS: @(#) $Id: tkWinDraw.c,v 1.19 2007/10/24 01:03:37 patthoyts Exp $ */ #include "tkWinInt.h" @@ -414,6 +414,8 @@ XCopyPlane( fgBrush = CreateSolidBrush(gc->foreground); oldBrush = SelectObject(destDC, fgBrush); + SetBkColor(destDC, RGB(255,255,255)); + SetTextColor(destDC, RGB(0,0,0)); BitBlt(destDC, dest_x, dest_y, (int) width, (int) height, srcDC, src_x, src_y, MASKPAT); SelectObject(destDC, oldBrush); |