i have a JFrame in which i set the content pane with a JDesktopPane.
jDesktopPane1 = new JDesktopPane();
setContentPane(jDesktopPane1);
My JFrame is full screen size, when i add a JInternalFrame with size 300x300
Main.getInstance().setSize(Toolkit.getDefaultToolkit().getScreenSize());
c = new Clients();
c.setVisible(true);
setEnabled(true);
Main.getInstance().addInDesktop(c);
In Clients:
this.setPreferredSize(new java.awt.Dimension(300, 300));
On my mac osx all works fine, if i use it on a windows machine the jinternalframe takes fullscreensize even if i set size or preferredsize. What can i do? It's possible all this changes between the two os?

