Swing Application on a Mac

I'm developing a Swing application to be deployed using WebStart on Windows as well as Macintosh platforms w/ the Mac-mini being the primary at this time.

Development is being done in Windows where everything looks good. When run on a Mac, there seem to be component size calculation issues.

In another post about deploying an applet having similar problems with text fields, just enabling the Smooth Text in Applets solved it. This, however, is not an applet but an application and that solution has no impact.

Any suggestions?

[555 byte] By [gestes59a] at [2007-10-2 20:21:13]
# 1
Set the LookAndFeel specifically pointing to one of the Look and Feel available. Guessing you might NOT have set any specific look and feel.Example:UIManager.setLookAndFeel("com.sun.java.swing.plaf.windows.WindowsLookAndFeel");Let us know if it worked.
suppusa at 2007-7-13 23:03:41 > top of Java-index,Desktop,Core GUI APIs...
# 2
Nope...that is not it. I am setting the look and feel as follows:UIManager.setLookAndFee("javax.swing.plaf.metal.MetalLookAndFeel");
gestes59a at 2007-7-13 23:03:41 > top of Java-index,Desktop,Core GUI APIs...