* fix potential Ubuntu issues

This commit is contained in:
Reinhard Pointner 2014-12-22 09:05:41 +00:00
parent 022cbfcbe3
commit a894f921c9
1 changed files with 2 additions and 11 deletions

View File

@ -53,7 +53,6 @@ import net.filebot.cli.ArgumentBean;
import net.filebot.cli.ArgumentProcessor; import net.filebot.cli.ArgumentProcessor;
import net.filebot.cli.CmdlineOperations; import net.filebot.cli.CmdlineOperations;
import net.filebot.format.ExpressionFormat; import net.filebot.format.ExpressionFormat;
import net.filebot.gio.GVFS;
import net.filebot.mac.MacAppUtilities; import net.filebot.mac.MacAppUtilities;
import net.filebot.ui.MainFrame; import net.filebot.ui.MainFrame;
import net.filebot.ui.PanelBuilder; import net.filebot.ui.PanelBuilder;
@ -192,14 +191,6 @@ public class Main {
// pre-load media.types and JNA/GIO (when loaded during DnD it will freeze the UI for a few hundred milliseconds) // pre-load media.types and JNA/GIO (when loaded during DnD it will freeze the UI for a few hundred milliseconds)
MediaTypes.getDefault(); MediaTypes.getDefault();
if (useGVFS()) {
try {
GVFS.getDefaultVFS();
} catch (Throwable e) {
Logger.getLogger(Main.class.getName()).log(Level.SEVERE, e.getMessage(), e);
}
}
// check for application updates (only when installed, i.e. not running via fatjar or webstart) // check for application updates (only when installed, i.e. not running via fatjar or webstart)
if (!"skip".equals(System.getProperty("application.update"))) { if (!"skip".equals(System.getProperty("application.update"))) {
try { try {
@ -237,7 +228,8 @@ public class Main {
// restore previous size and location // restore previous size and location
restoreWindowBounds(frame, Settings.forPackage(MainFrame.class)); restoreWindowBounds(frame, Settings.forPackage(MainFrame.class));
} catch (Exception e) { } catch (Exception e) {
// don't care, doesn't make a difference // just use platform default location
frame.setLocationByPlatform(true);
} }
frame.addWindowListener(new WindowAdapter() { frame.addWindowListener(new WindowAdapter() {
@ -270,7 +262,6 @@ public class Main {
} }
frame.setIconImages(images); frame.setIconImages(images);
} }
frame.setLocationByPlatform(true);
frame.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE); frame.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
// start application // start application