1
0
mirror of https://github.com/mitb-archive/filebot synced 2024-08-13 17:03:45 -04:00

* fix potential issues on OSX

This commit is contained in:
Reinhard Pointner 2014-08-02 06:06:22 +00:00
parent 6af8da3df9
commit e4bd68b026

View File

@ -131,13 +131,11 @@ public class MainFrame extends JFrame {
pad.addWindowListener(new WindowAdapter() {
public void windowOpened(WindowEvent e) {
MainFrame.this.setState(ICONIFIED);
MainFrame.this.setVisible(false);
};
public void windowClosing(WindowEvent e) {
MainFrame.this.setVisible(true);
MainFrame.this.setState(NORMAL);
};
});