From 003b893e23f3a2a0c3e36c8551ea2836fd645170 Mon Sep 17 00:00:00 2001 From: Fred Kiefer Date: Sat, 23 Dec 2000 14:22:16 +0000 Subject: [PATCH] In [drawInteriorWithFrame:inView:] use NSCompositeSourceOver as the operator for imag composition not NSCompositeCopy. This replacement may be necessary in other parts of the GUI as well!!!! git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@8424 72102866-910b-0410-8b05-ffd578937521 --- Source/NSCell.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/NSCell.m b/Source/NSCell.m index cc468aa4a..d52202b3b 100644 --- a/Source/NSCell.m +++ b/Source/NSCell.m @@ -1473,7 +1473,7 @@ static NSColor *shadowCol; */ if ([controlView isFlipped]) position.y += size.height; - [_cell_image compositeToPoint: position operation: NSCompositeCopy]; + [_cell_image compositeToPoint: position operation: NSCompositeSourceOver]; } break;