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
This commit is contained in:
Fred Kiefer 2000-12-23 14:22:16 +00:00
parent 43d41776c0
commit 003b893e23

View file

@ -1473,7 +1473,7 @@ static NSColor *shadowCol;
*/ */
if ([controlView isFlipped]) if ([controlView isFlipped])
position.y += size.height; position.y += size.height;
[_cell_image compositeToPoint: position operation: NSCompositeCopy]; [_cell_image compositeToPoint: position operation: NSCompositeSourceOver];
} }
break; break;