Hi
I'm writing a custom window class and am finding that even though I
set the "hasShadow" property to YES, it isn't getting one. I stripped
the following example down to the bare esentials but still no shadow.
Anyone know why this might be happening?
- (id) initWithSize:(NSSize) inSize
origin:(NSPoint) inOrigin
{
NSRect winFrame = NSMakeRect(inOrigin.x, inOrigin.y, inSize.width,
inSize.height);
self = [super initWithContentRect: winFrame
styleMask: NSBorderlessWindowMask
backing: NSBackingStoreBuffered
defer: YES];
if (self)
{
[self setHasShadow: YES];
[self orderFront: self];
}
return self;
}
_______________________________________________
Cocoa-dev mailing list ([email protected])
Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com
This email sent to [email protected]