Faced a strange problem, its essence: I apply Look and Feel JTattoo to my application. The appearance of components such as JRadioButton, JButton, JMenuBar changes successfully. This can be seen on the screen:
But the tabs JTabbedPane as ugly and remained. Why JTattoo had no effect on the JTabbedPane. Look and Feel connect so:
javax.swing.SwingUtilities.invokeLater(new Runnable() { public void run() { try { UIManager.setLookAndFeel("com.jtattoo.plaf.luna.LunaLookAndFeel"); } catch (ClassNotFoundException | InstantiationException | IllegalAccessException | UnsupportedLookAndFeelException e) { // TODO Auto-generated catch block e.printStackTrace(); } createAndShowGui(); } });
Please explain why this is happening and how to fix it?