From 4ddb45c1cdcd5f230ff5a66c8fa9114861a29e2d Mon Sep 17 00:00:00 2001 From: Marcus Gosselin Date: Sun, 16 Nov 2014 06:33:26 -0800 Subject: [PATCH] changed currentdirectory variable bug where it would try and access places that didn't exist. defaults to desktop now --- src/Viewer.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Viewer.java b/src/Viewer.java index 7a7531e..547b43d 100644 --- a/src/Viewer.java +++ b/src/Viewer.java @@ -25,7 +25,7 @@ public class Viewer implements BasicApp { private static int WIDTH = 800, HEIGHT = 600; // we need to have a home in case all else fails. - private static final String defaultSearchDirectory = System.getenv("APPDATA") + "\\MAndWorks\\MAndApps\\Backgrounds\\"; + private static final String defaultSearchDirectory = System.getenv("USERPROFILE") + "\\Desktop"; // current selection private static int selection = 0; @@ -74,7 +74,7 @@ public class Viewer implements BasicApp { // make sure we have our variable and file // we can explicitly set them as we are trying to pick up where we left // off - currentDirectoryVariable = new Variable("MAndWorks\\MAndApps\\Settings", "WallpaperSearchDirectory", defaultSearchDirectory, false); + currentDirectoryVariable = new Variable("MAndWorks\\MAndViewer", "currentDirectory", defaultSearchDirectory, false); currentDirectoryFile = new File(currentDirectoryVariable.getValue()); // which we use, be it variable or file, is completely arbitrary here.