I have noticed that while using the Substance UI for Java that when I set a new JFrame or JDialog to undecorated it is not honored.

e.g.

frame.setUndecorated(true);
frame.setVisible(true);

When run under Substance shows a decorated frame.

When run under system default L&F shows an undecorated frame.

Anyone have ideas for working around this? I have been unable to find anything on this at the Substance website/java.net forums or already existing in SO.

link|improve this question

3  
Have you tried setting JFrame.setDefaultLookAndFeelDecorated() before bringing up your the first window? – The Alchemist Sep 7 '10 at 12:18
the-alchemist, please submit this as an answer so that I can mark it correct and award you the points :) Thank you! – Syntax Sep 8 '10 at 1:43
feedback

1 Answer

up vote 1 down vote accepted

Thank you to The Alchemist for solving my problem:

Have you tried setting JFrame.setDefaultLookAndFeelDecorated() before bringing up your the first window? – The Alchemist Sep 7 at 12:18

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.