Version 1.3.5.8: Update Host.java to use linux home directory.

This commit is contained in:
John B. Matthews 2011-05-29 20:45:07 +00:00
parent 342e930046
commit 5adb646e11
1 changed files with 2 additions and 2 deletions

View File

@ -45,10 +45,10 @@ public class Host {
prefDir = userHome + "/Library/Preferences/";
}
else if (linux) {
prefDir = "";
prefDir = userHome + "/.";
}
else if (windows) {
prefDir = userHome + "/.";
prefDir = userHome;
}
else {
prefDir = "";