How do I prevent JDialog from showing in gnome-panel(Linux)?
- by aeter
I have a class:
public class ANote extends JDialog{...}
In GNOME(Linux) it shows an entry in the gnome-panel. I want it to show nothing (the same way it does in the taskbar in Windows), because there may be present several instances of the class simultaneously, and this overcrowds the gnome-panel.
How do I prevent it from showing an instance in the gnome-panel?
EDIT: So far I have tried playing with the modality, which hides it from the gnome-panel, but blocks the main frame of the application behind the ANote instances.