mirror of
https://github.com/mitb-archive/filebot
synced 2024-11-02 08:25:02 -04:00
56edac666c
* removed create panel (merged into list panel) * stuff for future subtitle support * lots of flag icons
32 lines
624 B
Java
32 lines
624 B
Java
import java.util.logging.Level;
|
|
import java.util.logging.Logger;
|
|
|
|
import javax.swing.SwingUtilities;
|
|
import javax.swing.UIManager;
|
|
|
|
import net.sourceforge.filebot.ui.FileBotWindow;
|
|
|
|
|
|
public class Main {
|
|
|
|
/**
|
|
* @param args
|
|
*/
|
|
public static void main(String[] args) {
|
|
|
|
try {
|
|
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
|
|
} catch (Exception e) {
|
|
// should not happen
|
|
Logger.getLogger(Logger.GLOBAL_LOGGER_NAME).log(Level.SEVERE, e.toString());
|
|
}
|
|
|
|
SwingUtilities.invokeLater(new Runnable() {
|
|
|
|
public void run() {
|
|
new FileBotWindow().setVisible(true);
|
|
}
|
|
});
|
|
}
|
|
}
|