Does Frame.setIconImage() not work on OSX? If so, does anyone know a
workaround? It seems pretty common for OSX applications to put little
icons in the title-bar of their document windows. However, it appears
that this call no-ops under OSX. Below is some sample code that
exhibits this problem.
Thanks, in advance, for any pointers!
Cheers,
pete
peter m. murray
email@hidden
public class Fred
{
public static void main(String[] args)
{
SwingUtilities.invokeLater(new Runnable()
{
public void run()
{
JFrame frame = new JFrame();
frame.setTitle("This is a test.");
frame.setIconImage(image);
frame.setVisible(true);
}
});
}
}
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Java-dev mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/java-dev/email@hidden