Reputation: 25
Currently I am trying to create a small Overlay that should not show in the alt+tab menu. I am using a JDialog in JRE 1.8.
JDialog
Is there any way to achieve this?
Upvotes: 0
Views: 322
Reputation: 191
You can try JDialog.setType( Window.Type.UTILITY );
JDialog.setType( Window.Type.UTILITY );
Upvotes: 1