* Source/NSImageCell.m (-drawInteriorWithFrame:inView:): Only

draw at 50% opacity if no bezel is set for cocoa compatibility.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@34674 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
ericwa 2012-01-31 02:27:18 +00:00
parent c3c6ecb107
commit 2c748a834c
2 changed files with 12 additions and 1 deletions

View file

@ -246,7 +246,13 @@ yBottomInRect(NSSize innerSize, NSRect outerRect, BOOL flipped)
rect = [controlView centerScanRect: rect];
}
CGFloat fraction = [self isEnabled] ? 1.0 : 0.5;
CGFloat fraction = 1.0;
if (_frameStyle == NSImageFrameNone
&& ![self isEnabled])
{
fraction = 0.5;
}
// draw!
[_cell_image drawInRect: rect