Hi everybody,
I'm trying to set my window background color to "clear", so that I can (temporarily) have a translucent black subview. But later, I need to set the window back to how it was before. The problem is that the window has one of those nice content borders on the bottom, which disappears after I call setBackgroundColor - never to return! Even when I call setContentBorderThickness:forEdge:, the content border won't show up again. Here's my code:

NSColor *originalColor = [mainWindow backgroundColor];
[mainWindow setBackgroundColor:[NSColor clearColor]];
...
[mainWindow setBackgroundColor:originalColor];
[mainWindow setContentBorderThickness:39.0 forEdge:NSMinYEdge]; // The content border still doesn't show up

Does anyone have any suggestions for what I can do? Thanks in advance!!
_______________________________________________

Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)

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]

Reply via email to