Re: Context menu for minimised window
Re: Context menu for minimised window
- Subject: Re: Context menu for minimised window
- From: Ali Ozer <email@hidden>
- Date: Tue, 30 Oct 2001 17:58:14 -0800
>
Well, I tried setMiniwindowImage and it apparently does nothing - and
>
the documentation says it works for "collapsed miniwindows", whatever
>
those are :-), but not for dock tiles.
You need to set a default, which you can do in the context of your app
by registering it at startup. From the AppKit release notes:
There is a user default, AppleDockIconEnabled, to enable setting the
image in a minimized window tile with -[NSWindow setMiniwindowImage:].
The image will be scaled as necessary to fit the tile. This behavior is
off by default, so you must set AppleDockIconEnabled to YES if you want
to enable this behavior.
Ali