I have a JDesktopPane that adds JInternalFrames. On Linux (ubuntu) and Mac os, all displayed internal frame appear in a taskbar/toolbar standing in the bottom left corner, with the name of each internal frame as label. This toolbar is not displayed on Windows, which is the behaviour I expect.
Would anybody know how to desactivate this toolbar?
I'm setting the internal frames this way:
frame.setResizable(false);
frame.setClosable(false);
frame.setMaximizable(false);
frame.setIconifiable(false);
And adding them to JLayeredPane.PALETTE_LAYER