mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-25 16:00:52 +00:00
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:
parent
43d41776c0
commit
003b893e23
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue