From 85ecbca5f81c04b841e568861718a1253fb36824 Mon Sep 17 00:00:00 2001 From: jprocter Date: Sun, 5 Jun 2005 17:36:38 +0000 Subject: [PATCH] firefox now default for unixen. --- src/jalview/util/BrowserLauncher.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/jalview/util/BrowserLauncher.java b/src/jalview/util/BrowserLauncher.java index 685e92f..a36ea27 100755 --- a/src/jalview/util/BrowserLauncher.java +++ b/src/jalview/util/BrowserLauncher.java @@ -469,8 +469,8 @@ public class BrowserLauncher { default: browser = jalview.bin.Cache.applicationProperties.getProperty("jalview.browser"); if (browser==null) { - // hope netscape exists :-/ - browser = "netscape"; + // hope firefox exists :-/ + browser = "firefox"; } break; } @@ -561,7 +561,7 @@ public class BrowserLauncher { } break; case OTHER: - // Assume that we're on Unix and that Netscape is installed + // Assume that we're on Unix and that Netscape (actually Firefox) is installed // First, attempt to open the URL in a currently running session of Netscape process = Runtime.getRuntime().exec(new String[] { (String) browser, -- 1.7.10.2