diff -r 023cda5b8b0b -r 859804c78010 rt/launcher/src/main/java/org/apidesign/bck2brwsr/launcher/Launcher.java --- a/rt/launcher/src/main/java/org/apidesign/bck2brwsr/launcher/Launcher.java Wed Mar 13 16:20:03 2013 +0100 +++ b/rt/launcher/src/main/java/org/apidesign/bck2brwsr/launcher/Launcher.java Thu Mar 14 09:22:28 2013 +0100 @@ -102,7 +102,7 @@ * @throws IOException if something goes wrong */ public static Closeable showURL(URLClassLoader classes, String startpage) throws IOException { - Bck2BrwsrLauncher l = new Bck2BrwsrLauncher(null); + Bck2BrwsrLauncher l = new WebViewLauncher(); l.addClassLoader(classes); l.showURL(startpage); return l; @@ -116,7 +116,7 @@ * @exception IOException if something goes wrong. */ public static Closeable showDir(File directory, String startpage) throws IOException { - Bck2BrwsrLauncher l = new Bck2BrwsrLauncher(null); + Bck2BrwsrLauncher l = new WebViewLauncher(); l.showDirectory(directory, startpage); return l; }